~ubuntu-branches/ubuntu/lucid/virtuoso-opensource/lucid

« back to all changes in this revision

Viewing changes to binsrc/tests/bsbm/src/benchmark/vocabulary/XSD.java

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2010-02-05 01:22:09 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20100205012209-h2dhz20vxpx55oam
Tags: 6.1.0-0ubuntu1
* New upstream release
* Sync with Debian packaging from Git
 - Add no_do_os_calls.diff patch, don't allow do_os_calls
 - Install to /usr/lib/virtuoso instead of /usr/bin, not a user
   binary
 - virtuoso-t installed to /usr/lib/virtuoso/
* Update build-gmake-to-make.patch
* Add package virtuoso-nepomuk to install only the files needed by nepomuk
* Remove virtuoso-nepomuk files from virtuoso-opensource-6.0-bin and libvirtodbc0
* Add virtuoso-opensource-6.0-bin.links to link to virtuoso-t from /usr/bin
* libvirtodbc0 and virtuoso-opensource-6.0-bin depends on virtuoso-nepomuk
* Remove build-dep on libwbxml2-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
public class XSD {
6
6
        //The namespace of this vocabulary as String
7
7
    public static final String NS = "http://www.w3.org/2001/XMLSchema#";
8
 
 
 
8
    
9
9
    //Get the URI of this vocabulary
10
10
        public static String getURI() { return NS; }
11
 
 
 
11
 
12
12
        public static final String PREFIX = "xsd:";
13
 
 
 
13
        
14
14
        private static HashMap<String, String> uriMap = new HashMap<String, String>();
15
 
 
 
15
        
16
16
        /*
17
17
         * For prefixed versions
18
18
         */
26
26
                        return newValue;
27
27
                }
28
28
        }
29
 
 
 
29
        
30
30
        //Resources
31
31
        public static final String Integer = NS + "integer";
32
 
 
 
32
        
33
33
        public static final String Int = NS + "int";
34
 
 
 
34
        
35
35
        public static final String Float = NS + "float";
36
 
 
 
36
        
37
37
        public static final String Double = NS + "double";
38
38
 
39
39
        public static final String Long = NS + "long";
43
43
        public static final String Decimal = NS + "decimal";
44
44
 
45
45
        public static final String Date = NS + "date";
46
 
 
 
46
        
47
47
        public static final String DateTime = NS + "dateTime";
48
48
}
 
 
b'\\ No newline at end of file'