Remove the TagData functionality.
This commit is contained in:
parent
2b8e21d9e7
commit
6511b04085
2 changed files with 0 additions and 39 deletions
Binary file not shown.
|
@ -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);
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in a new issue