/* * Created on Jul 15, 2003 * * To change the template for this generated file go to * Window>Preferences>Java>Code Generation>Code and Comments */ package CDBuilder.console; import org.eclipse.jface.text.TextViewer; import org.eclipse.swt.SWT; import org.eclipse.swt.widgets.Composite; import org.eclipse.ui.part.ViewPart; /** * @author ssim * * To change the template for this generated type comment go to * Window>Preferences>Java>Code Generation>Code and Comments */ public class ConsoleView extends ViewPart { public void createPartControl(Composite parent) { TextViewer tv = new TextViewer(parent, SWT.V_SCROLL | SWT.WRAP); tv.setDocument(ConsoleDocument.getCDOS(tv)); tv.setEditable(false); } public void setFocus() { } }