From: <rv...@us...> - 2010-02-12 04:35:30
|
Revision: 493 http://treebase.svn.sourceforge.net/treebase/?rev=493&view=rev Author: rvos Date: 2010-02-12 04:35:22 +0000 (Fri, 12 Feb 2010) Log Message: ----------- Added DarwinCore namespace Modified Paths: -------------- trunk/treebase-core/src/main/java/org/cipres/treebase/domain/nexus/nexml/NexmlObjectConverter.java Modified: trunk/treebase-core/src/main/java/org/cipres/treebase/domain/nexus/nexml/NexmlObjectConverter.java =================================================================== --- trunk/treebase-core/src/main/java/org/cipres/treebase/domain/nexus/nexml/NexmlObjectConverter.java 2010-02-11 16:37:07 UTC (rev 492) +++ trunk/treebase-core/src/main/java/org/cipres/treebase/domain/nexus/nexml/NexmlObjectConverter.java 2010-02-12 04:35:22 UTC (rev 493) @@ -24,7 +24,9 @@ protected static URI mDCURI; protected static URI mPrismURI; protected static URI mTBTermsURI; - protected URI mBaseURI; + protected static URI mDwCURI; + protected URI mBaseURI; + private static String mDwCString = "http://rs.tdwg.org/dwc/terms/"; private static String mTBTermsString = "http://treebase.org/terms#"; private static String mDCURIString = "http://purl.org/dc/terms/"; private static String mPrismURIString = "http://prismstandard.org/namespaces/1.2/basic/"; @@ -43,6 +45,7 @@ mDCURI = new URI(mDCURIString); mPrismURI = new URI(mPrismURIString); mTBTermsURI = new URI(mTBTermsString); + mDwCURI = new URI(mDwCString); if ( null != baseURI ) { mBaseURI = new URI(baseURI); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |