001package com.hfg.xml.msofficexml.docx;
002
003import com.hfg.xml.XMLName;
004import com.hfg.xml.XMLNamespace;
005
006/**
007 * Created with IntelliJ IDEA.
008 * User: taylora
009 * Date: 5/20/13
010 * Time: 9:06 PM
011 * To change this template use File | Settings | File Templates.
012 */
013public class RelationshipXML
014{
015   public static final XMLNamespace RELATIONSHIP_NAMESPACE     = XMLNamespace.getNamespace("r", "http://schemas.openxmlformats.org/officeDocument/2006/relationships");
016
017   public static final XMLName EMBED_ATT            = new XMLName("embed", RELATIONSHIP_NAMESPACE);
018   public static final XMLName ID_ATT               = new XMLName("id",    RELATIONSHIP_NAMESPACE);
019   public static final XMLName LINK_ATT             = new XMLName("link",  RELATIONSHIP_NAMESPACE);
020
021}