diff --git a/build/classes/fr/devinsy/xid/TagData.class b/build/classes/fr/devinsy/xid/TagData.class deleted file mode 100644 index 5f754dd..0000000 Binary files a/build/classes/fr/devinsy/xid/TagData.class and /dev/null differ diff --git a/src/fr/devinsy/xid/TagData.java b/src/fr/devinsy/xid/TagData.java deleted file mode 100644 index 7a102b4..0000000 --- a/src/fr/devinsy/xid/TagData.java +++ /dev/null @@ -1,39 +0,0 @@ -package fr.devinsy.xid; - -import java.io.*; - - -/** - * IdData class is used to hold application data and - * the business logic that operates on the data. - * - * The only requirement of a IdData class is that it must implement a - * display method. The display method must return a text representation - * of the data, suitable for display in a web page. - * - * XID provides a User Input IdData, Text IdData and ... - * application may also implement it's own IdData classes. - * - */ -public class TagData extends IdData implements Serializable -{ - private static final long serialVersionUID = 2857526344702056757L; - - - /* - * - */ - public TagData () - { - super (); - } - - - /* - * - */ - public TagData (String text) - { - super (text); - } -}