Package com.sun.hotspot.igv.view

Examples of com.sun.hotspot.igv.view.EditorTopComponent


* @author Thomas Wuerthinger
*/
public final class ExtractAction extends CallableSystemAction {

    public void performAction() {
        EditorTopComponent editor = EditorTopComponent.getActive();
        if (editor != null) {
            editor.extract();
        }
    }
View Full Code Here


* @author Thomas Wuerthinger
*/
public final class ZoomInAction extends CallableSystemAction {

    public void performAction() {
        EditorTopComponent editor = EditorTopComponent.getActive();
        if (editor != null) {
            editor.zoomIn();
        }
    }
View Full Code Here

* @author Thomas Wuerthinger
*/
public final class HideAction extends CallableSystemAction {

    public void performAction() {
        EditorTopComponent editor = EditorTopComponent.getActive();
        if (editor != null) {
            editor.hideNodes();
        }
    }
View Full Code Here

* @author Thomas Wuerthinger
*/
public final class ZoomOutAction extends CallableSystemAction {

    public void performAction() {
        EditorTopComponent editor = EditorTopComponent.getActive();
        if (editor != null) {
            editor.zoomOut();
        }
    }
View Full Code Here

* @author Thomas Wuerthinger
*/
public final class ExpandPredecessorsAction extends CallableSystemAction {

    public void performAction() {
        EditorTopComponent editor = EditorTopComponent.getActive();
        if (editor != null) {
            editor.expandPredecessors();
        }
    }
View Full Code Here

* @author Thomas Wuerthinger
*/
public final class NodeFindAction extends CallableSystemAction {

    public void performAction() {
        EditorTopComponent comp = EditorTopComponent.getActive();
        if (comp != null) {
            comp.findNode();
        }
    }
View Full Code Here

* @author Thomas Wuerthinger
*/
public final class ExpandSuccessorsAction extends CallableSystemAction {

    public void performAction() {
        EditorTopComponent editor = EditorTopComponent.getActive();
        if (editor != null) {
            editor.expandSuccessors();
        }
    }
View Full Code Here

TOP

Related Classes of com.sun.hotspot.igv.view.EditorTopComponent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.