/** * JacobGen generated file --- do not edit * * (http://www.sourceforge.net/projects/jacob-project */ package slash.metamusic.itunes.com.binding; import com.jacob.com.Dispatch; public class IITArtwork extends Dispatch { public static final String componentName = "iTunesLib.IITArtwork"; public IITArtwork() { super(componentName); } /** * This constructor is used instead of a case operation to * turn a Dispatch object into a wider object - it must exist * in every wrapper class whose instances may be returned from * method calls wrapped in VT_DISPATCH Variants. */ public IITArtwork(Dispatch d) { // take over the IDispatch pointer m_pDispatch = d.m_pDispatch; // null out the input's pointer d.m_pDispatch = 0; } public IITArtwork(String compName) { super(compName); } /** * Wrapper for calling the ActiveX-Method with input-parameter(s). */ public void delete() { Dispatch.call(this, "Delete"); } /** * Wrapper for calling the ActiveX-Method with input-parameter(s). * * @param lastParam an input-parameter of type String */ public void setArtworkFromFile(String lastParam) { Dispatch.call(this, "SetArtworkFromFile", lastParam); } /** * Wrapper for calling the ActiveX-Method with input-parameter(s). * * @param lastParam an input-parameter of type String */ public void saveArtworkToFile(String lastParam) { Dispatch.call(this, "SaveArtworkToFile", lastParam); } /** * Wrapper for calling the ActiveX-Method with input-parameter(s). * * @return the result is of type int */ public int getFormat() { return Dispatch.get(this, "Format").toInt(); } /** * Wrapper for calling the ActiveX-Method with input-parameter(s). * * @return the result is of type boolean */ public boolean getIsDownloadedArtwork() { return Dispatch.get(this, "IsDownloadedArtwork").toBoolean(); } }