001    package hep.aida.ref.sql.Test;
002    
003    /** <code>RowRepresentant</code> is used to test 
004      * {@link hep.aida.ref.sql.SQLTuple#getColumn(String, Class)} methods. 
005      * <p><font color="#880088">
006      * <pre>
007      * $Log: RowRepresentant.java,v $
008      * Revision 1.9  2007/05/23 16:38:45  hrivnac
009      * logical connections for Plotter; better UML
010      *
011      * Revision 1.8  2004/05/22 15:12:59  hrivnac
012      * class id reformated
013      *
014      * Revision 1.7  2004/04/14 13:39:47  hrivnac
015      * 1.5 warnings fixed
016      *
017      * Revision 1.6  2004/04/13 15:45:54  hrivnac
018      * AIDA URL introduced
019      *
020      * Revision 1.5  2004/02/10 14:50:58  hrivnac
021      * JavaDoc tags completed
022      *
023      * Revision 1.4  2004/02/04 13:30:42  hrivnac
024      * - improvement of Enums internal mapping
025      * - general cleaning
026      *
027      * Revision 1.3  2003/11/20 17:36:08  hrivnac
028      * JavaDoc links fixed
029      *
030      * Revision 1.2  2003/11/05 19:46:22  hrivnac
031      * - FreeHEP 1.2.1
032      * - JAIDA 3.2.1
033      *
034      * </pre>
035      * </font></p>
036      * @opt attributes
037      * @opt operations
038      * @opt types
039      * @opt visibility
040      * @version $Id: RowRepresentant.java,v 1.9 2007/05/23 16:38:45 hrivnac Exp $
041      * @author <a href="mailto:Julius.Hrivnac@cern.ch">J.Hrivnac</a> */
042    public class RowRepresentant {
043    
044      /** One argument String constructor, reqired by 
045        * {@link hep.aida.ref.sql.SQLTuple#getColumn(String, Class)} methods. 
046        * @param s The content of this RowReresentant. */
047      public RowRepresentant(String s) {
048        _content = s;
049        }
050    
051      public String toString() {
052        return "RowRepresentant(" + _content + ")";
053        }
054    
055      private String _content;
056    
057      }