1 /*** 2 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html 3 */ 4 package net.sourceforge.pmd.quickfix; 5 6 public interface Fix { 7 String fix(String code, int lineNumber); 8 9 String getLabel(); 10 }