// (c) Matti J. Katila package org.fenfire.vocab.lava; import org.fenfire.swamp.Nodes; /** RDF Vocabulary to save an uri. */ public class SAVE { static public final String _nsId = "http://fenfire.org/EXPERIMENTAL/rdf-v/2003/05/save"; /** State of the last save of some application */ static public final Object State; /** A pointer to uri of last save */ static public final Object point; static { State = Nodes.get(_nsId + "#State"); point = Nodes.get(_nsId + "#point"); } }