org.eclipse.php.internal.debug.ui.launching.DebuggerLaunchSettingsSectionAdapter.java Source code

Java tutorial

Introduction

Here is the source code for org.eclipse.php.internal.debug.ui.launching.DebuggerLaunchSettingsSectionAdapter.java

Source

/*******************************************************************************
 * Copyright (c) 2015 Zend Technologies 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:
 *     Zend Technologies - initial API and implementation
 *******************************************************************************/
package org.eclipse.php.internal.debug.ui.launching;

import org.eclipse.debug.core.ILaunchConfiguration;
import org.eclipse.debug.core.ILaunchConfigurationWorkingCopy;
import org.eclipse.jface.dialogs.IMessageProvider;
import org.eclipse.php.internal.debug.ui.launching.AbstractPHPLaunchConfigurationDebuggerTab.StatusMessage;
import org.eclipse.php.internal.debug.ui.launching.AbstractPHPLaunchConfigurationDebuggerTab.WidgetListener;
import org.eclipse.swt.widgets.Composite;

/**
 * This adapter class provides default implementations for the methods described
 * by the <code>IDebuggerLaunchSettingsSection</code> interface.
 * <p>
 * Classes that wish to deal with launch settings sections can extend this class
 * and override only the methods which they are interested in.
 * </p>
 * 
 * @author Bartlomiej Laczkowski
 */
public class DebuggerLaunchSettingsSectionAdapter implements IDebuggerLaunchSettingsSection {

    /*
     * (non-Javadoc)
     * 
     * @see org.eclipse.php.internal.debug.ui.launching.
     * IDebuggerLaunchSettingsSection#createSection(org.eclipse.swt.widgets.
     * Composite, org.eclipse.php.internal.debug.ui.launching.
     * AbstractPHPLaunchConfigurationDebuggerTab.WidgetListener)
     */
    @Override
    public void createSection(Composite parent, WidgetListener widgetListener) {
        // Empty
    }

    /*
     * (non-Javadoc)
     * 
     * @see org.eclipse.php.internal.debug.ui.launching.
     * IDebuggerLaunchSettingsSection#initialize(org.eclipse.debug.core.
     * ILaunchConfiguration)
     */
    @Override
    public void initialize(ILaunchConfiguration configuration) {
        // Empty
    }

    /*
     * (non-Javadoc)
     * 
     * @see org.eclipse.php.internal.debug.ui.launching.
     * IDebuggerLaunchSettingsSection#performApply(org.eclipse.debug.core.
     * ILaunchConfigurationWorkingCopy)
     */
    @Override
    public void performApply(ILaunchConfigurationWorkingCopy configuration) {
        // Empty
    }

    /*
     * (non-Javadoc)
     * 
     * @see org.eclipse.php.internal.debug.ui.launching.
     * IDebuggerLaunchSettingsSection#setDefaults(org.eclipse.debug.core.
     * ILaunchConfigurationWorkingCopy)
     */
    @Override
    public void setDefaults(ILaunchConfigurationWorkingCopy configuration) {
        // Empty
    }

    /*
     * (non-Javadoc)
     * 
     * @see org.eclipse.php.internal.debug.ui.launching.
     * IDebuggerLaunchSettingsSection#isValid(org.eclipse.debug.core.
     * ILaunchConfiguration)
     */
    @Override
    public StatusMessage isValid(ILaunchConfiguration configuration) {
        return new StatusMessage(IMessageProvider.NONE, ""); //$NON-NLS-1$
    }

}