001package com.hfg.xml.creativecommons; 002 003 004import com.hfg.xml.XMLName; 005import com.hfg.xml.XMLNamespace; 006 007//------------------------------------------------------------------------------ 008/** 009 Creative Commons tags for RDF. 010 <div> 011 See <a href='http://creativecommons.org/ns'>http://creativecommons.org/ns</a> 012 </div> 013 <div> 014 @author J. Alex Taylor, hairyfatguy.com 015 </div> 016 */ 017//------------------------------------------------------------------------------ 018// com.hfg XML/HTML Coding Library 019// 020// This library is free software; you can redistribute it and/or 021// modify it under the terms of the GNU Lesser General Public 022// License as published by the Free Software Foundation; either 023// version 2.1 of the License, or (at your option) any later version. 024// 025// This library is distributed in the hope that it will be useful, 026// but WITHOUT ANY WARRANTY; without even the implied warranty of 027// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 028// Lesser General Public License for more details. 029// 030// You should have received a copy of the GNU Lesser General Public 031// License along with this library; if not, write to the Free Software 032// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 033// 034// J. Alex Taylor, President, Founder, CEO, COO, CFO, OOPS hairyfatguy.com 035// jataylor@hairyfatguy.com 036//------------------------------------------------------------------------------ 037 038public class CreativeCommons 039{ 040 public static final XMLNamespace CREATIVE_COMMONS_NAMESPACE = XMLNamespace.getNamespace("cc", "http://creativecommons.org/ns#"); 041 042 // Tag names 043 public static final XMLName WORK = new XMLName("Work", CREATIVE_COMMONS_NAMESPACE); 044 045}