Skip to content

Commit 900074b

Browse files
authored
update DOAP.java with default prefix
added reccommended prefix for doap, as in [http://prefix.cc/doap](http://prefix.cc/doap)
1 parent d5e7815 commit 900074b

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

  • core/model/src/main/java/org/eclipse/rdf4j/model/vocabulary

core/model/src/main/java/org/eclipse/rdf4j/model/vocabulary/DOAP.java

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,21 @@
1616
*/
1717
public class DOAP {
1818

19+
/**
20+
* The recommended prefix for the DOAP namespace: "doap"
21+
*/
22+
public static final String PREFIX = "doap";
23+
24+
/**
25+
* The DOAP namespace: http://usefulinc.com/ns/doap#
26+
*/
1927
public static final String NAMESPACE = "http://usefulinc.com/ns/doap#";
2028

29+
/**
30+
* An immutable {@link Namespace} constant that represents the DOAP namespace.
31+
*/
32+
public static final Namespace NS = new SimpleNamespace(PREFIX, NAMESPACE);
33+
2134
/**
2235
* Classes
2336
*/

0 commit comments

Comments
 (0)