KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > ui > internal > part > SiteComposite


1 /*******************************************************************************
2  * Copyright (c) 2004, 2005 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.ui.internal.part;
12
13 import org.eclipse.swt.SWT;
14 import org.eclipse.swt.widgets.Composite;
15 import org.eclipse.ui.internal.part.components.interfaces.IFocusable;
16
17 /**
18  * @since 3.1
19  */

20 public class SiteComposite extends Composite {
21     private IFocusable focusHandler = null;
22     
23     public SiteComposite(Composite parent) {
24         super(parent, SWT.NONE);
25     }
26     
27     public void setFocusable(IFocusable f) {
28         this.focusHandler = f;
29     }
30     
31     /* (non-Javadoc)
32      * @see org.eclipse.swt.widgets.Composite#setFocus()
33      */

34     public boolean setFocus() {
35         if (focusHandler != null && focusHandler.setFocus()) {
36             return true;
37         }
38         
39         return super.setFocus();
40     }
41 }
42
Popular Tags