Uses of Interface
org.tinyjee.maven.dim.spi.SnippetSelector

Packages that use SnippetSelector
org.tinyjee.maven.dim.sources Contains the source loading & template execution logic. 
org.tinyjee.maven.dim.spi Contains the use- and implementable interfaces. 
 

Uses of SnippetSelector in org.tinyjee.maven.dim.sources
 

Classes in org.tinyjee.maven.dim.sources that implement SnippetSelector
 class AbstractSnippetSelector
          Implements an abstract base for snippet selectors that operate on a single expression prefix.
 class AbstractStreamingSnippetSelector
          Implements an abstract base for snippet selectors that implement everything using stream processing, rather than trying to buffer the results in memory.
 class AOPLikeSnippetSelector
          Implements an AOP expression like snippet selector using the expression prefix "AJ:".
 class GrepLikeSnippetSelector
          Implements a token based snippet selector working similar as the unix command 'grep' using the expression prefix "grep:".
 class IdDefinitionSelector
          Implements a selector that matches all snippet ID definitions triggered by a single expression "snippet-ids".
 class IdSnippetSelector
          Implements the default ID based selector already known from the classic snippet macro that is part of Doxia.
 class LineRangeSnippetSelector
          Implements a selector based on a line range definition to select snippets using the expression prefix "lines:".
 class RegularExpressionSnippetSelector
          Implements a simple regular expression based snippet selector using the expression prefix "RE:".
 class TokenAndBraceSnippetSelector
          Selects snippets using an activation token and open/close brace counting, using the expression prefix "TB:".
 class XPathSnippetSelector
          Implements a XPath expression based snippet selector supporting XML and JSON formatted input, using the expression prefix "XP:".
 

Uses of SnippetSelector in org.tinyjee.maven.dim.spi
 

Fields in org.tinyjee.maven.dim.spi with type parameters of type SnippetSelector
static Iterable<SnippetSelector> SnippetSelector.SELECTORS
          Is an iterable over all selectors within the classpath.