// (c) Tuomas J. Lukka package org.fenfire.vocab; import org.fenfire.swamp.Nodes; /** RDF Vocabulary of content links. */ public class CONTENTLINK { static public final String _nsId = "http://fenfire.org/rdf-v/2003/05/contentlink"; /** The RDF class for content links. A node which is a content link * must have both the CONTENTLINK.from and CONTENTLINK.to * properties. */ static public final Object Link; /** The Alph-parseable enfilade XML literal of a content * link from-end. */ static public final Object from; /** The Alph-parseable enfilade XML literal of a content * link to-end. */ static public final Object to; static { Link = Nodes.get(_nsId + "#Link"); from = Nodes.get(_nsId + "#from"); to = Nodes.get(_nsId + "#to"); } }