List of usage examples for org.eclipse.swt.ole.win32 OleControlSite OleControlSite
public OleControlSite(Composite parent, int style, String progId, File file)
From source file:org.eclipse.swt.examples.ole.win32.OLEExample.java
OleClientSite createSite(OleFrame frame, String progID, File file) { if (createClientSite) { return new OleClientSite(frame, SWT.NONE, progID, file); } else {//from w w w . j a v a 2 s . c o m return new OleControlSite(frame, SWT.NONE, progID, file); } }