Annotation of java/classes/org/w3c/rdf/RDFnode.java, revision 1.1

1.1     ! jsaarela    1: /**
        !             2:  * Copyright © World Wide Web Consortium, (Massachusetts Institute of
        !             3:  * Technology, Institut National de Recherche en Informatique et en
        !             4:  * Automatique, Keio University).
        !             5:  *
        !             6:  * All Rights Reserved.
        !             7:  *
        !             8:  * Please see the full Copyright clause at
        !             9:  * <http://www.w3.org/Consortium/Legal/copyright-software.html>
        !            10:  *
        !            11:  * $Log$
        !            12:  *
        !            13:  * @author     Janne Saarela <jsaarela@w3.org>
        !            14:  */
        !            15: package org.w3c.rdf;
        !            16: 
        !            17: public class RDFnode
        !            18: {
        !            19:     public RDFnode() {
        !            20:     }
        !            21: 
        !            22:     public String      toString () {
        !            23:        return "undefined";
        !            24:     }
        !            25: }

Webmaster