-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
code transform interface slightly changed (related to issue #58)
temporary indent argument removed since debugging can now be done with much more accurate event handling api
- Loading branch information
Showing
3 changed files
with
20 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,8 +10,14 @@ | |
/** | ||
* | ||
* @author Michael Hoffer <[email protected]> | ||
* @param <T> | ||
*/ | ||
@FunctionalInterface | ||
public interface CodeTransform<T extends CodeEntity> { | ||
public T transform(T ce, String indent); | ||
/** | ||
* | ||
* @param ce | ||
* @return | ||
*/ | ||
public T transform(T ce); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters