blob: cecb1f79caf3420ab5f832af5fad6265358f71bd [file] [log] [blame]
/**
* Copyright (c) 2011, 2014 - Lunifera GmbH (Gross Enzersdorf, Austria), Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
* 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:
* Florian Pirchner - Initial implementation
*/
package org.eclipse.osbp.vaaclipse.addons.application.handler;
import org.eclipse.e4.core.contexts.Active;
import org.eclipse.e4.core.di.annotations.CanExecute;
import org.eclipse.e4.core.di.annotations.Execute;
import org.eclipse.e4.ui.model.application.ui.MContext;
import org.eclipse.e4.ui.model.application.ui.menu.MItem;
import com.vaadin.ui.Notification;
import com.vaadin.ui.Notification.Type;
import com.vaadin.ui.VerticalLayout;
/**
* The Class NotImplementedHandler.
*/
public class NotImplementedHandler extends AbstractHandler {
/**
* Execute.
*
* @param context
* the context
* @param parent
* the parent
* @param item
* the item
*/
@Execute
public void execute(@Active MContext context,
@Active VerticalLayout parent, @Active MItem item) {
Notification.show("Not implemented yet.", Type.WARNING_MESSAGE);
}
/**
* Can execute.
*
* @return true, if successful
*/
@CanExecute
public boolean canExecute() {
return true;
}
}