blob: 7c8a76445edf7aae30eed9888597e2a021b4e96c [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.netbeans.modules.php.zend;
import java.util.Collections;
import java.util.List;
import javax.swing.Action;
import org.netbeans.modules.php.spi.framework.actions.GoToActionAction;
import org.netbeans.modules.php.spi.framework.actions.GoToViewAction;
import org.netbeans.modules.php.spi.framework.actions.RunCommandAction;
import org.netbeans.modules.php.spi.framework.PhpModuleActionsExtender;
import org.netbeans.modules.php.zend.ui.actions.ZendRunCommandAction;
import org.netbeans.modules.php.zend.ui.actions.ZendGoToActionAction;
import org.netbeans.modules.php.zend.ui.actions.ZendGoToViewAction;
import org.netbeans.modules.php.zend.util.ZendUtils;
import org.openide.filesystems.FileObject;
import org.openide.util.NbBundle;
/**
* @author Tomas Mysik
*/
public class ZendPhpModuleActionsExtender extends PhpModuleActionsExtender {
@Override
public String getMenuName() {
return NbBundle.getMessage(ZendPhpModuleActionsExtender.class, "LBL_MenuName");
}
@Override
public RunCommandAction getRunCommandAction() {
return ZendRunCommandAction.getInstance();
}
@Override
public List<? extends Action> getActions() {
return Collections.emptyList();
}
@Override
public boolean isViewWithAction(FileObject fo) {
return ZendUtils.isViewWithAction(fo);
}
@Override
public boolean isActionWithView(FileObject fo) {
return ZendUtils.isAction(fo);
}
@Override
public GoToActionAction getGoToActionAction(FileObject fo, int offset) {
return new ZendGoToActionAction(fo);
}
@Override
public GoToViewAction getGoToViewAction(FileObject fo, int offset) {
return new ZendGoToViewAction(fo, offset);
}
}