public interface CustomUncommenter
Modifier and Type | Method and Description |
---|---|
TextRange |
findMaximumCommentedRange(java.lang.CharSequence text)
Finds commented block in provided text.
|
java.util.Collection<? extends Couple<TextRange>> |
getCommentRangesToDelete(java.lang.CharSequence text)
Returns couples each pointing to comment prefix and suffix:
[commentPrefix-start,commentPrefix-end] -- [commentSuffix-start,commentSuffix-end].
|
TextRange findMaximumCommentedRange(java.lang.CharSequence text)
text
- text to search comment for.java.util.Collection<? extends Couple<TextRange>> getCommentRangesToDelete(java.lang.CharSequence text)
text
- text with comments