KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > sourceforge > pmd > quickfix > Fix


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 JavaDoc fix(String JavaDoc code, int lineNumber);
8
9     String JavaDoc getLabel();
10 }
11
Popular Tags