All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.swt.browser.TitleListener Maven / Gradle / Ivy

Go to download

SWT is an open source widget toolkit for Java designed to provide efficient, portable access to the user-interface facilities of the operating systems on which it is implemented.

The newest version!
/*******************************************************************************
 * Copyright (c) 2003, 2005 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.swt.browser;

import org.eclipse.swt.internal.SWTEventListener;

/**
 * This listener interface may be implemented in order to receive
 * a {@link TitleEvent} notification when the title of the document
 * displayed in a {@link Browser} is known or has been changed.
 * 
 * @see Browser#addTitleListener(TitleListener)
 * @see Browser#removeTitleListener(TitleListener)
 * 
 * @since 3.0
 */
public interface TitleListener extends SWTEventListener {

/**
 * This method is called when the title of the current document
 * is available or has changed.
 * 

* *

The following fields in the TitleEvent apply: *

    *
  • (in) title the title of the current document *
  • (in) widget the Browser whose current document's * title is known or modified *
* * @param event the TitleEvent that contains the title * of the document currently displayed in a Browser * * @since 3.0 */ public void changed(TitleEvent event); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy