*** empty log message ***
diff --git a/Article-Adapters/code/org.eclipse.articles.adapters.core/.classpath b/Article-Adapters/code/org.eclipse.articles.adapters.core/.classpath
new file mode 100644
index 0000000..64c5e31
--- /dev/null
+++ b/Article-Adapters/code/org.eclipse.articles.adapters.core/.classpath
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+ <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5"/>
+ <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
+ <classpathentry kind="src" path="src"/>
+ <classpathentry kind="output" path="bin"/>
+</classpath>
diff --git a/Article-Adapters/code/org.eclipse.articles.adapters.core/.project b/Article-Adapters/code/org.eclipse.articles.adapters.core/.project
new file mode 100644
index 0000000..82cca1d
--- /dev/null
+++ b/Article-Adapters/code/org.eclipse.articles.adapters.core/.project
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>org.eclipse.articles.adapters.core</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.eclipse.jdt.core.javabuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ <buildCommand>
+ <name>org.eclipse.pde.ManifestBuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ <buildCommand>
+ <name>org.eclipse.pde.SchemaBuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.eclipse.pde.PluginNature</nature>
+ <nature>org.eclipse.jdt.core.javanature</nature>
+ </natures>
+</projectDescription>
diff --git a/Article-Adapters/code/org.eclipse.articles.adapters.core/.settings/org.eclipse.jdt.core.prefs b/Article-Adapters/code/org.eclipse.articles.adapters.core/.settings/org.eclipse.jdt.core.prefs
new file mode 100644
index 0000000..ec0b0d8
--- /dev/null
+++ b/Article-Adapters/code/org.eclipse.articles.adapters.core/.settings/org.eclipse.jdt.core.prefs
@@ -0,0 +1,7 @@
+#Mon Jun 16 14:24:18 EDT 2008
+eclipse.preferences.version=1
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
+org.eclipse.jdt.core.compiler.compliance=1.5
+org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
+org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
+org.eclipse.jdt.core.compiler.source=1.5
diff --git a/Article-Adapters/code/org.eclipse.articles.adapters.core/META-INF/MANIFEST.MF b/Article-Adapters/code/org.eclipse.articles.adapters.core/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..633a4e0
--- /dev/null
+++ b/Article-Adapters/code/org.eclipse.articles.adapters.core/META-INF/MANIFEST.MF
@@ -0,0 +1,7 @@
+Manifest-Version: 1.0
+Bundle-ManifestVersion: 2
+Bundle-Name: Adapter Sample Core Plug-in
+Bundle-SymbolicName: org.eclipse.articles.adapters.core
+Bundle-Version: 0.1.0.qualifier
+Bundle-RequiredExecutionEnvironment: J2SE-1.4
+Export-Package: org.eclipse.articles.adapters.core
diff --git a/Article-Adapters/code/org.eclipse.articles.adapters.core/build.properties b/Article-Adapters/code/org.eclipse.articles.adapters.core/build.properties
new file mode 100644
index 0000000..34d2e4d
--- /dev/null
+++ b/Article-Adapters/code/org.eclipse.articles.adapters.core/build.properties
@@ -0,0 +1,4 @@
+source.. = src/
+output.. = bin/
+bin.includes = META-INF/,\
+ .
diff --git a/Article-Adapters/code/org.eclipse.articles.adapters.core/src/org/eclipse/articles/adapters/core/Person.java b/Article-Adapters/code/org.eclipse.articles.adapters.core/src/org/eclipse/articles/adapters/core/Person.java
new file mode 100644
index 0000000..6791043
--- /dev/null
+++ b/Article-Adapters/code/org.eclipse.articles.adapters.core/src/org/eclipse/articles/adapters/core/Person.java
@@ -0,0 +1,48 @@
+/*******************************************************************************
+ * Copyright (c) 2008 The Eclipse Foundation.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * The Eclipse Foundation - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.articles.adapters.core;
+
+public class Person {
+ private String name;
+ private Object street;
+ private Object city;
+
+ public Person(String name) {
+ this.setName(name);
+ this.setStreet("");
+ this.setCity("");
+ }
+
+ public void setName(String name) {
+ this.name = name;
+ }
+
+ public String getName() {
+ return name;
+ }
+
+ public void setStreet(Object street) {
+ this.street = street;
+ }
+
+ public Object getStreet() {
+ return street;
+ }
+
+ public void setCity(Object city) {
+ this.city = city;
+ }
+
+ public Object getCity() {
+ return city;
+ }
+
+}
\ No newline at end of file