Uses of Class
org.eclipse.mylyn.wikitext.core.parser.markup.PatternBasedElement

Packages that use PatternBasedElement
org.eclipse.mylyn.internal.wikitext.confluence.core.phrase   
org.eclipse.mylyn.internal.wikitext.confluence.core.token   
org.eclipse.mylyn.internal.wikitext.mediawiki.core.phrase   
org.eclipse.mylyn.internal.wikitext.mediawiki.core.token   
org.eclipse.mylyn.internal.wikitext.textile.core.phrase   
org.eclipse.mylyn.internal.wikitext.textile.core.token   
org.eclipse.mylyn.internal.wikitext.tracwiki.core.phrase   
org.eclipse.mylyn.internal.wikitext.tracwiki.core.token   
org.eclipse.mylyn.internal.wikitext.twiki.core.phrase   
org.eclipse.mylyn.internal.wikitext.twiki.core.token   
org.eclipse.mylyn.wikitext.core.parser.markup comopnents for implementing a parser in terms of a MarkupLanguage 
org.eclipse.mylyn.wikitext.core.parser.markup.phrase reusable PatternBasedElement components for implementing phrase modifiers of a markup language parser 
org.eclipse.mylyn.wikitext.core.parser.markup.token reusable PatternBasedElement components for implementing replacement tokens of a markup language parser 
 

Uses of PatternBasedElement in org.eclipse.mylyn.internal.wikitext.confluence.core.phrase
 

Subclasses of PatternBasedElement in org.eclipse.mylyn.internal.wikitext.confluence.core.phrase
 class ConfluenceWrappedPhraseModifier
          A phrase modifier that is wrapped with confluence-style words, for example: {quote}
 class EmphasisPhraseModifier
           
 class ImagePhraseModifier
           
 class SimplePhraseModifier
           
 class SimpleWrappedPhraseModifier
           
 class StrangePhraseModifier
          This class is 'strange' because it deals with the strange Confluence syntax for inline formatting.
 

Uses of PatternBasedElement in org.eclipse.mylyn.internal.wikitext.confluence.core.token
 

Subclasses of PatternBasedElement in org.eclipse.mylyn.internal.wikitext.confluence.core.token
 class AnchorReplacementToken
           
 class EscapedCharacterReplacementToken
           
 class HyperlinkReplacementToken
           
 class UnknownMacroReplacementToken
           
 

Uses of PatternBasedElement in org.eclipse.mylyn.internal.wikitext.mediawiki.core.phrase
 

Subclasses of PatternBasedElement in org.eclipse.mylyn.internal.wikitext.mediawiki.core.phrase
 class EscapePhraseModifier
           
 

Uses of PatternBasedElement in org.eclipse.mylyn.internal.wikitext.mediawiki.core.token
 

Subclasses of PatternBasedElement in org.eclipse.mylyn.internal.wikitext.mediawiki.core.token
 class EntityReferenceReplacementToken
           
 class HyperlinkExternalReplacementToken
          match [[internal links]]
 class HyperlinkInternalReplacementToken
          match [[internal links]]
 class ImageReplacementToken
          match [[Image:someImage.png]]
 class LineBreakToken
           
 

Uses of PatternBasedElement in org.eclipse.mylyn.internal.wikitext.textile.core.phrase
 

Subclasses of PatternBasedElement in org.eclipse.mylyn.internal.wikitext.textile.core.phrase
 class EscapeTextilePhraseModifier
           
 class HyperlinkPhraseModifier
           
 class ImageTextilePhraseModifier
           
 class SimpleTextilePhraseModifier
          A simple phrase modifier implementation that matches a pattern in text and emits a span containing the content of the matched region.
 

Uses of PatternBasedElement in org.eclipse.mylyn.internal.wikitext.textile.core.token
 

Subclasses of PatternBasedElement in org.eclipse.mylyn.internal.wikitext.textile.core.token
 class FootnoteReferenceReplacementToken
           
 

Uses of PatternBasedElement in org.eclipse.mylyn.internal.wikitext.tracwiki.core.phrase
 

Subclasses of PatternBasedElement in org.eclipse.mylyn.internal.wikitext.tracwiki.core.phrase
 class DeletedPhraseModifier
           
 class MonospacePhraseModifier
          A preformatted block is delimited by tripple-curlies {{{ }}}
 

Uses of PatternBasedElement in org.eclipse.mylyn.internal.wikitext.tracwiki.core.token
 

Subclasses of PatternBasedElement in org.eclipse.mylyn.internal.wikitext.tracwiki.core.token
 class BangEscapeToken
          A token replacement that replaces any two characters that start with a '!' and are followed by a trac markup character
 class ChangesetLinkReplacementToken
          recognizes links to Trac changesets, eg: r1 or [1] or [1/trunk] or changeset:1 or changeset:1/trunk
 class MilestoneLinkReplacementToken
          recognizes links to Trac milestones, eg: milestone:1
 class ReportLinkReplacementToken
          recognizes links to Trac reports, eg: {1} or report:1
 class RevisionLogReplacementToken
          recognizes links to Trac revision logs, eg: r1:3 or [1:3] or log:@1:3 or log:trunk@1:3 or [2:5/trunk]
 class SourceLinkReplacementToken
          recognizes links to the Trac source browser, eg: source:/trunk/COPYING or source:/trunk/COPYING@200 or source:/trunk/COPYING@200#L26
 class TicketAttachmentLinkReplacementToken
          recognizes links to Trac ticket attachments, eg: attachment:patch1.txt:ticket:234
 class TicketLinkReplacementToken
          recognizes links to Trac tickets, eg: #1 or ticket:1 or comment:1:ticket:2
 class WikiLinkReplacementToken
           
 class WikiWordReplacementToken
          Matches WikiWord internal hyperlinks.
 

Uses of PatternBasedElement in org.eclipse.mylyn.internal.wikitext.twiki.core.phrase
 

Subclasses of PatternBasedElement in org.eclipse.mylyn.internal.wikitext.twiki.core.phrase
 class AutoLinkSwitchPhraseModifier
           
 

Uses of PatternBasedElement in org.eclipse.mylyn.internal.wikitext.twiki.core.token
 

Subclasses of PatternBasedElement in org.eclipse.mylyn.internal.wikitext.twiki.core.token
 class IconReplacementToken
          Token that replaces %ICON{""}% with the appropriate image tag.
 class ImpliedEmailLinkReplacementToken
           
 class LinkReplacementToken
          Tokens that represent links, as follows: [[link]]
 

Uses of PatternBasedElement in org.eclipse.mylyn.wikitext.core.parser.markup
 

Fields in org.eclipse.mylyn.wikitext.core.parser.markup with type parameters of type PatternBasedElement
protected  List<PatternBasedElement> MarkupLanguage.PatternBasedSyntax.elements
           
 

Methods in org.eclipse.mylyn.wikitext.core.parser.markup that return PatternBasedElement
 PatternBasedElement PatternBasedElement.clone()
           
 

Methods in org.eclipse.mylyn.wikitext.core.parser.markup that return types with arguments of type PatternBasedElement
protected  List<PatternBasedElement> MarkupLanguage.PatternBasedSyntax.getElements()
           
 List<PatternBasedElement> MarkupLanguageConfiguration.getPhraseModifiers()
           
 List<PatternBasedElement> MarkupLanguageConfiguration.getTokens()
           
 

Methods in org.eclipse.mylyn.wikitext.core.parser.markup with parameters of type PatternBasedElement
 void MarkupLanguage.PatternBasedSyntax.add(PatternBasedElement element)
           
 

Uses of PatternBasedElement in org.eclipse.mylyn.wikitext.core.parser.markup.phrase
 

Subclasses of PatternBasedElement in org.eclipse.mylyn.wikitext.core.parser.markup.phrase
 class HtmlCommentPhraseModifier
          A phrase modifier that detects HTML and XML comments in the source.
 class HtmlEndTagPhraseModifier
          A phrase modifier that detects HTML and XML end-tags in the source, passing them through to the builder as either escaped or unescaped text.
 class HtmlStartTagPhraseModifier
          A phrase modifier that detects HTML and XML tags in the source, passing them through to the builder as either escaped or unescaped text.
 class LimitedHtmlEndTagPhraseModifier
          A phrase modifier that detects HTML and XML end-tags, but only those that are explicitly specified.
 class LimitedHtmlStartTagPhraseModifier
          A phrase modifier that detects HTML and XML tags, but only those that are explicitly specified.
 

Uses of PatternBasedElement in org.eclipse.mylyn.wikitext.core.parser.markup.token
 

Subclasses of PatternBasedElement in org.eclipse.mylyn.wikitext.core.parser.markup.token
 class AcronymReplacementToken
          A token for acronyms, which are defined as 3 or more upper-case letters followed immediately by parentheses with one or more words.
 class EntityWrappingReplacementToken
          A replacement token for segments of text that are delimited by specified text.
 class ImpliedHyperlinkReplacementToken
          A token that detects hyperlinks in the markup and emits them as a link.
 class PatternEntityReferenceReplacementToken
          Replaces strings matching a pattern with a specified entity reference.
 class PatternLineBreakReplacementToken
          Replaces text that matches a pattern with a line break.
 class PatternLiteralReplacementToken
          Replaces text matching a pattern with an unescaped literal.
 



Copyright © 2011 FuseSource, Corp.. All Rights Reserved.