| Home >> All >> com >> port80 >> eclipse >> [ util Javadoc ] |
Source code: com/port80/eclipse/util/ICodeFragmentFormatter.java
1 /* 2 * Created on Aug 13, 2003 3 */ 4 package com.port80.eclipse.util; 5 6 /** 7 * @author chrisl 8 */ 9 public interface ICodeFragmentFormatter { 10 void init(int linewidth, int tabwidth); 11 String format(String input); 12 }