diff --git a/build/classes/fr/devinsy/xid/Attributes.class b/build/classes/fr/devinsy/xid/Attributes.class
deleted file mode 100644
index a7c60bc..0000000
Binary files a/build/classes/fr/devinsy/xid/Attributes.class and /dev/null differ
diff --git a/build/classes/fr/devinsy/xid/Data.class b/build/classes/fr/devinsy/xid/Data.class
deleted file mode 100644
index c1b230c..0000000
Binary files a/build/classes/fr/devinsy/xid/Data.class and /dev/null differ
diff --git a/build/classes/fr/devinsy/xid/DomPresenter.class b/build/classes/fr/devinsy/xid/DomPresenter.class
deleted file mode 100644
index 06f6aa4..0000000
Binary files a/build/classes/fr/devinsy/xid/DomPresenter.class and /dev/null differ
diff --git a/build/classes/fr/devinsy/xid/IdData$IterationStrategy.class b/build/classes/fr/devinsy/xid/IdData$IterationStrategy.class
deleted file mode 100644
index d66b8ec..0000000
Binary files a/build/classes/fr/devinsy/xid/IdData$IterationStrategy.class and /dev/null differ
diff --git a/build/classes/fr/devinsy/xid/IdData$MODE.class b/build/classes/fr/devinsy/xid/IdData$MODE.class
deleted file mode 100644
index 2b3da08..0000000
Binary files a/build/classes/fr/devinsy/xid/IdData$MODE.class and /dev/null differ
diff --git a/build/classes/fr/devinsy/xid/IdData.class b/build/classes/fr/devinsy/xid/IdData.class
deleted file mode 100644
index 3d8200e..0000000
Binary files a/build/classes/fr/devinsy/xid/IdData.class and /dev/null differ
diff --git a/build/classes/fr/devinsy/xid/IdDataCore.class b/build/classes/fr/devinsy/xid/IdDataCore.class
deleted file mode 100644
index 0bf70c6..0000000
Binary files a/build/classes/fr/devinsy/xid/IdDataCore.class and /dev/null differ
diff --git a/build/classes/fr/devinsy/xid/IdsDataById.class b/build/classes/fr/devinsy/xid/IdsDataById.class
deleted file mode 100644
index f797556..0000000
Binary files a/build/classes/fr/devinsy/xid/IdsDataById.class and /dev/null differ
diff --git a/build/classes/fr/devinsy/xid/IdsDataByIndex.class b/build/classes/fr/devinsy/xid/IdsDataByIndex.class
deleted file mode 100644
index 9270a0e..0000000
Binary files a/build/classes/fr/devinsy/xid/IdsDataByIndex.class and /dev/null differ
diff --git a/build/classes/fr/devinsy/xid/ParserErrorHandler.class b/build/classes/fr/devinsy/xid/ParserErrorHandler.class
deleted file mode 100644
index 59d5547..0000000
Binary files a/build/classes/fr/devinsy/xid/ParserErrorHandler.class and /dev/null differ
diff --git a/build/classes/fr/devinsy/xid/StringPresenter.class b/build/classes/fr/devinsy/xid/StringPresenter.class
deleted file mode 100644
index ec785cd..0000000
Binary files a/build/classes/fr/devinsy/xid/StringPresenter.class and /dev/null differ
diff --git a/build/classes/fr/devinsy/xid/testXid.html b/build/classes/fr/devinsy/xid/testXid.html
deleted file mode 100644
index 78a308e..0000000
--- a/build/classes/fr/devinsy/xid/testXid.html
+++ /dev/null
@@ -1,79 +0,0 @@
-
-
-
- test
-
-
- Test 01: No id attribute
- XHTML: Hello world.
- no Java code
- Result: Hello world.
-
- Test 02: id attribute with empty model
- XHTML: Hello world.
- no Java code
- Result: Hello world.
-
-
- Test 03: model changing the text
- XHTML: Hello world.
- // Populate attributes of Test 03.
- text = new TextModel ();
- text.getAttributes ().appendAttribute ("style", "background: blue;");
- text.getAttributes ().appendAttribute ("style", "foreground: red;");
- text.getAttributes ().setAttribute ("class", "totoClass");
- text.setText ("mummy");
- datas.put ("test03", text);
- Result: Hello world.
-
-
- Test 04: model changing title
- XHTML: Hello world.
- // Populate attributes of Test 04.
- text = new TextModel ();
- text.getAttributes ().setAttribute ("title", "another title");
- datas.put ("test04", text);
- Result: Hello world.
-
-
- Test 05: model adding style attributes
- XHTML: Hello world.
- // Populate attributes of Test 05.
- text = new TextModel ();
- text.getAttributes ().appendAttribute ("style", "background: blue;");
- text.getAttributes ().appendAttribute ("style", "foreground: red;");
- text.getAttributes ().setAttribute ("class", "aClass");
- datas.put ("test05", text);
- Result: Hello world.
-
-
- Test 06: model appending style attributes
- XHTML: Hello world.
- // Populate attributes of Test 06.
- text = new TextModel ();
- text.getAttributes ().appendAttribute ("style", "foreground: red;");
- text.getAttributes ().setAttribute ("class", "aClass");
- datas.put ("test06", text);
- Result: Hello world.
-
-
- Test 07: image
- XHTML: A picture .
- // Populate attributes of Test 07.
- text = new TextModel ();
- text.getAttributes ().setAttribute ("width", "50%");
- datas.put ("test07", text);
- Result: A picture .
-
-
- Test 08: xhtml source contains no display order in a tag.
- XHTML: Hello you there.
- Result: Hello you there.
-
-
- Test 09: dynamic addition of the nodisplay order.
- XHTML: Hello you there.
- Result: Hello you there.
-
-
-
\ No newline at end of file
diff --git a/build/classes/fr/devinsy/xid/testXid.t b/build/classes/fr/devinsy/xid/testXid.t
deleted file mode 100644
index 9037424..0000000
--- a/build/classes/fr/devinsy/xid/testXid.t
+++ /dev/null
@@ -1,69 +0,0 @@
-
-
-
- test
-
-
- Test 01: No id attribute
- XHTML: Hello world.
- no Java code
- Result: Hello world.
-
- Test 02: id attribute with empty model
- XHTML: Hello world.
- no Java code
- Result: Hello world.
-
-
- Test 03: model changing the text
- XHTML: Hello world.
- // Populate attributes of Test 03.
- text = new TextModel ();
- text.getAttributes ().appendAttribute ("style", "background: blue;");
- text.getAttributes ().appendAttribute ("style", "foreground: red;");
- text.getAttributes ().setAttribute ("class", "totoClass");
- text.setText ("mummy");
- datas.put ("test03", text);
- Result: Hello world.
-
-
- Test 04: model changing title
- XHTML: Hello world.
- // Populate attributes of Test 04.
- text = new TextModel ();
- text.getAttributes ().setAttribute ("title", "another title");
- datas.put ("test04", text);
- Result: Hello world.
-
-
- Test 05: model adding style attributes
- XHTML: Hello world.
- // Populate attributes of Test 05.
- text = new TextModel ();
- text.getAttributes ().appendAttribute ("style", "background: blue;");
- text.getAttributes ().appendAttribute ("style", "foreground: red;");
- text.getAttributes ().setAttribute ("class", "aClass");
- datas.put ("test05", text);
- Result: Hello world.
-
-
- Test 06: model appending style attributes
- XHTML: Hello world.
- // Populate attributes of Test 06.
- text = new TextModel ();
- text.getAttributes ().appendAttribute ("style", "foreground: red;");
- text.getAttributes ().setAttribute ("class", "aClass");
- datas.put ("test06", text);
- Result: Hello world.
-
-
- Test 07: image
- XHTML: A picture .
- // Populate attributes of Test 07.
- text = new TextModel ();
- text.getAttributes ().setAttribute ("width", "50%");
- datas.put ("test07", text);
- Result: A picture .
-
-
-
\ No newline at end of file
diff --git a/build/classes/fr/devinsy/xid/xhtml-lat1.ent b/build/classes/fr/devinsy/xid/xhtml-lat1.ent
deleted file mode 100644
index ffee223..0000000
--- a/build/classes/fr/devinsy/xid/xhtml-lat1.ent
+++ /dev/null
@@ -1,196 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/build/classes/fr/devinsy/xid/xhtml-special.ent b/build/classes/fr/devinsy/xid/xhtml-special.ent
deleted file mode 100644
index cead4e8..0000000
--- a/build/classes/fr/devinsy/xid/xhtml-special.ent
+++ /dev/null
@@ -1,82 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/build/classes/fr/devinsy/xid/xhtml-symbol.ent b/build/classes/fr/devinsy/xid/xhtml-symbol.ent
deleted file mode 100644
index 63c2abf..0000000
--- a/build/classes/fr/devinsy/xid/xhtml-symbol.ent
+++ /dev/null
@@ -1,237 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/build/classes/fr/devinsy/xid/xhtml1-frameset.dtd b/build/classes/fr/devinsy/xid/xhtml1-frameset.dtd
deleted file mode 100644
index 1a00936..0000000
--- a/build/classes/fr/devinsy/xid/xhtml1-frameset.dtd
+++ /dev/null
@@ -1,1235 +0,0 @@
-
-
-
-
-
-%HTMLlat1;
-
-
-%HTMLsymbol;
-
-
-%HTMLspecial;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/build/classes/fr/devinsy/xid/xhtml1-transitional.dtd b/build/classes/fr/devinsy/xid/xhtml1-transitional.dtd
deleted file mode 100644
index e22581b..0000000
--- a/build/classes/fr/devinsy/xid/xhtml1-transitional.dtd
+++ /dev/null
@@ -1,1210 +0,0 @@
-
-
-
-
-
-%HTMLlat1;
-
-
-%HTMLsymbol;
-
-
-%HTMLspecial;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-