[graphl-cvs] graphl/src/org/mediavirus/graphl/vocabulary NS.java Graphl.java
Status: Pre-Alpha
Brought to you by:
flo1
From: Flo L. <fl...@us...> - 2005-08-17 15:53:31
|
Update of /cvsroot/graphl/graphl/src/org/mediavirus/graphl/vocabulary In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16461/src/org/mediavirus/graphl/vocabulary Modified Files: Graphl.java Added Files: NS.java Log Message: - FEATURE: added navigator thread for update-exhibition, disabled in normal operation - FEATURE: started implementation of filtering architecture - FEATURE: creating new node opens type context menu - CODE: added NS calss for easier namespace referencing in code --- NEW FILE: NS.java --- /* * Created on 16.08.2005 */ package org.mediavirus.graphl.vocabulary; /** * @author flo */ public class NS { public static final String graphl = "http://www.mediavirus.org/graphl#"; } Index: Graphl.java =================================================================== RCS file: /cvsroot/graphl/graphl/src/org/mediavirus/graphl/vocabulary/Graphl.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Graphl.java 4 Oct 2004 10:21:01 -0000 1.2 --- Graphl.java 17 Aug 2005 15:52:52 -0000 1.3 *************** *** 20,24 **** private Graphl() { ! namespace = "http://www.mediavirus.org/graphl#"; name = "Graphl"; defaultNamespacePrefix = "graphl"; --- 20,24 ---- private Graphl() { ! namespace = NS.graphl; name = "Graphl"; defaultNamespacePrefix = "graphl"; |