<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">// ##########################################################################
// ####                                                                  ####
// ####                  Publikations-Manager Komponenten                ####
// ####                ====================================              ####
// ####                                                                  ####
// #### Datenobjekt.java                                                 ####
// ####                                                                  ####
// #### Version 1.00, 19. Dezember 1999                                  ####
// ####                                                                  ####
// #### Copyright (C) 1999  Thomas Dreibholz                             ####
// ####               2000  Universität Bonn                             ####
// ####               EMail: dreibh@exp-math.uni-essen.de                ####
// ####               WWW:   http://www.exp-math.uni-essen.de/~dreibh    ####
// ####                                                                  ####
// ####                                                                  ####
// ##########################################################################


import java.io.*;
import java.util.*;


// ****** Datenobjekt ****************************************************
public interface Datenobjekt
{
   public String Beschreibung();   
   public String EingabeTyp();
   public String Inhalt();
   public int    InhaltInteger();
   public void   Aendern(String neu);
   public void   AendernInteger(int neu);
   public void   Ausgabe();
   public String toString();
}
</pre></body></html>