001package com.hfg.xml.msofficexml.xlsx; 002 003 004import com.hfg.xml.msofficexml.RelationshipType; 005 006public class SsmlRelationshipType extends RelationshipType 007{ 008 public static final SsmlRelationshipType SHARED_STRINGS = new SsmlRelationshipType("http://schemas.openxmlformats.org/officeDocument/2006/relationships/sharedStrings"); 009 010 011 //--------------------------------------------------------------------------- 012 protected SsmlRelationshipType(String inValue) 013 { 014 super(inValue); 015 } 016 017}