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