1 /** 2 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html 3 */ 4 package net.sourceforge.pmd.lang.dfa; 5 6 import net.sourceforge.pmd.lang.ast.Node; 7 8 public interface DFAGraphMethod extends Node { 9 10 String getName(); 11 }