com.ybo.trackingplugin.tasks.utils.PatternProducer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of traceplugin Show documentation
Show all versions of traceplugin Show documentation
gradle plugin allowing to add automatic logs (or other process) at the start of each traced method
package com.ybo.trackingplugin.tasks.utils
import com.ybo.trackingplugin.tasks.data.PatternToSearch
import com.ybo.trackingplugin.tasks.utils.impl.patterns.PatternName
/**
* Object able to produce patterns ([PatternToSearch]) which are to be looked for in a text.
*/
interface PatternProducer {
/**
* creates a list of patterns to search in a code file.
* for performance purposes, the more costly patterns should be moved to the end of the list
*/
fun produce(): List>
}