1 28 package org.eclipse.swt.internal.mozilla; 29 30 public class nsIContentViewerContainer extends nsISupports { 31 32 static final int LAST_METHOD_ID = nsISupports.LAST_METHOD_ID + 2; 33 34 public static final String NS_ICONTENTVIEWERCONTAINER_IID_STRING = 35 "ea2ce7a0-5c3d-11d4-90c2-0050041caf44"; 36 37 public static final nsID NS_ICONTENTVIEWERCONTAINER_IID = 38 new nsID(NS_ICONTENTVIEWERCONTAINER_IID_STRING); 39 40 public nsIContentViewerContainer(int address) { 41 super(address); 42 } 43 44 public int Embed(int aDocViewer, byte[] aCommand, int aExtraInfo) { 45 return XPCOM.VtblCall(super.LAST_METHOD_ID + 1, getAddress(), aDocViewer, aCommand, aExtraInfo); 46 } 47 48 public int SetIsPrinting(boolean aIsPrinting) { 49 return XPCOM.VtblCall(super.LAST_METHOD_ID + 2, getAddress(), aIsPrinting); 50 } 51 } | Popular Tags |