view visualizer/Data/src/at/ssw/visualizer/model/nc/NativeMethod.java @ 4512:015fb895586b

Moved visualizer to new directory.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Tue, 07 Feb 2012 22:41:09 +0100
parents
children
line wrap: on
line source

package at.ssw.visualizer.model.nc;

import at.ssw.visualizer.model.cfg.ControlFlowGraph;

/**
 *
 * @author Alexander Reder
 */
public interface NativeMethod {

    public ControlFlowGraph getControlFlowGraph();
    
    public String getMethodText();
    
}