// (c) Tuomas J. Lukka package org.fenfire.vocab; import org.fenfire.swamp.Nodes; /** RDF vocabulary for directed (so far typeless) * one-to-one links. */ public class STRUCTLINK { static public final String _nsId = "http://fenfire.org/rdf-v/2003/05/structlink"; /** The directed link association. * A and B are linked by the tuple (A, DLINK.dLink, B) */ static public final Object linkedTo; static { linkedTo = Nodes.get(_nsId + "#linkedTo"); } }