001package com.hfg.xml.msofficexml.docx.drawingml; 002 003import com.hfg.xml.msofficexml.docx.Docx; 004import com.hfg.xml.msofficexml.OfficeOpenXMLTag; 005 006/** 007 008 From the ECMA-TC45 Primer: "BLIPs refer to Binary Large Image or Pictures." 009 */ 010public class DmlBlip extends OfficeOpenXMLTag 011{ 012 private DmlStretch mStretch; 013 private DmlBlip mBlip; 014 015 //--------------------------------------------------------------------------- 016 public DmlBlip(Docx inDocx) 017 { 018 super(DmlXML.BLIP, inDocx); 019 } 020 021}