jInfer

Uses of Class
cz.cuni.mff.ksi.jinfer.base.regexp.Regexp

Packages that use Regexp
cz.cuni.mff.ksi.jinfer.autoeditor.automatonvisualizer.layouts.transformers This package contains various transformations (mostly 'to string') Transformer used by AutoEditor. 
cz.cuni.mff.ksi.jinfer.base.automaton This package contains data structures and interfaces for Finite State Automata. 
cz.cuni.mff.ksi.jinfer.base.objects.nodes This package contains the object model of jInfer's XML representation. 
cz.cuni.mff.ksi.jinfer.base.regexp This package contains the object model of jInfer's regular expression representation. 
cz.cuni.mff.ksi.jinfer.base.utils This package contains utility logic shared across jInfer. 
cz.cuni.mff.ksi.jinfer.basicdtd Main package of the Basic DTD Exporter module. 
cz.cuni.mff.ksi.jinfer.basicigg.dtd This package contains the logic for initial grammar generation from DTD schemas. 
cz.cuni.mff.ksi.jinfer.basicigg.expansion This package provides a simple implementation of the Expander interface. 
cz.cuni.mff.ksi.jinfer.basicruledisplayer.logic This package contains Rule Displayer logic. 
cz.cuni.mff.ksi.jinfer.basicxsd.utils This package contains utilities used by Basic XSD Exporter. 
cz.cuni.mff.ksi.jinfer.treeruledisplayer.logic This package contains all logic behind constructing rule set trees displayed in Tree rule displayer. 
cz.cuni.mff.ksi.jinfer.twostep.cleaning Package for regular expression cleaning task. 
cz.cuni.mff.ksi.jinfer.twostep.cleaning.chained Chains other cleaners. 
cz.cuni.mff.ksi.jinfer.twostep.cleaning.cleanernull Does nothing, dummy cleaner. 
cz.cuni.mff.ksi.jinfer.twostep.cleaning.emptychildren Cleaning of (a, (), c) to (a, c). 
cz.cuni.mff.ksi.jinfer.twostep.cleaning.nestedconcatenation Cleaning of (a, (b, c)) to (a, b, c). 
cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.evaluating.regexpbitcode   
cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.evaluating.regexptokensize   
cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.evaluating.regexptostringsize   
cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping Submodule for converting automaton to RegexpAutomaton and then obtaining Regexp from it. 
cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping.stateremoval Implementation of state removal algorithm for converting automaton into regular expression. 
cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping.stateremoval.heuristic   
cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping.stateremoval.ordered   
cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping.stateremoval.ordered.ordering Interface of ordering submodule for StateRemoval
cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping.stateremoval.ordered.ordering.fullscan   
cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping.stateremoval.ordered.ordering.userinteractive Automaton is drawn to user. 
cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping.stateremoval.ordered.ordering.weighted Simple heuristic for ordering states in automaton. 
cz.cuni.mff.ksi.jinfer.twostep.processing.trie This package contains the Trie (prefix tree) implementation of ClusterProcessor
 

Uses of Regexp in cz.cuni.mff.ksi.jinfer.autoeditor.automatonvisualizer.layouts.transformers
 

Methods in cz.cuni.mff.ksi.jinfer.autoeditor.automatonvisualizer.layouts.transformers with parameters of type Regexp
 String RegexpToStringTransformer.transform(Regexp<AbstractStructuralNode> regexp)
           
 

Method parameters in cz.cuni.mff.ksi.jinfer.autoeditor.automatonvisualizer.layouts.transformers with type arguments of type Regexp
 String RegexpEdgeLabeller.transform(Step<Regexp<AbstractStructuralNode>> step)
           
 

Uses of Regexp in cz.cuni.mff.ksi.jinfer.base.automaton
 

Methods in cz.cuni.mff.ksi.jinfer.base.automaton that return Regexp
static
<T> Regexp<T>
AutomatonRegexpIntervalExpander.expandIntervalsRegexp(Regexp<T> regexp)
           
 

Methods in cz.cuni.mff.ksi.jinfer.base.automaton with parameters of type Regexp
 void Automaton.buildPTAOnRegexp(Regexp<T> regexp)
           
static
<T> Regexp<T>
AutomatonRegexpIntervalExpander.expandIntervalsRegexp(Regexp<T> regexp)
           
 

Uses of Regexp in cz.cuni.mff.ksi.jinfer.base.objects.nodes
 

Methods in cz.cuni.mff.ksi.jinfer.base.objects.nodes that return Regexp
 Regexp<AbstractStructuralNode> Element.getSubnodes()
          Get the subnodes regexp.
 

Constructors in cz.cuni.mff.ksi.jinfer.base.objects.nodes with parameters of type Regexp
Element(List<String> context, String name, Map<String,Object> metadata, Regexp<AbstractStructuralNode> subnodes, List<Attribute> attributes)
          Create immutable element given all members.
 

Uses of Regexp in cz.cuni.mff.ksi.jinfer.base.regexp
 

Methods in cz.cuni.mff.ksi.jinfer.base.regexp that return Regexp
static
<T> Regexp<T>
Regexp.getAlternation(List<Regexp<T>> children)
          Get immutable alternation regexp with interval set to {1, 1}.
static
<T> Regexp<T>
Regexp.getAlternation(List<Regexp<T>> children, RegexpInterval interval)
          Get immutable alternation regexp.
 Regexp<T> Regexp.getChild(int i)
          Shorthand for getChildren().get().
static
<T> Regexp<T>
Regexp.getConcatenation(List<Regexp<T>> children)
          Get immutable concatenation regexp with interval set to {1, 1}.
static
<T> Regexp<T>
Regexp.getConcatenation(List<Regexp<T>> children, RegexpInterval interval)
          Get immutable concatenation regexp.
 Regexp<T> Regexp.getEnd(int from)
          Returns a new concatenation containing the suffix of the specified concatenation, that is children from index specified by parameter from up to the end.
static
<T> Regexp<T>
Regexp.getLambda()
          Get immutable lambda regexp.
static
<T> Regexp<T>
Regexp.getMutable()
          Get empty (members not set) regexp which is mutable.
static
<T> Regexp<T>
Regexp.getPermutation(List<Regexp<T>> children)
          Get immutable permutation regexp with interval set to {1, 1}.
static
<T> Regexp<T>
Regexp.getPermutation(List<Regexp<T>> children, RegexpInterval interval)
          Get immutable permutation regexp.
static
<T> Regexp<T>
Regexp.getToken(T content)
          Get immutable token regexp with interval set to {1, 1}.
static
<T> Regexp<T>
Regexp.getToken(T content, RegexpInterval interval)
          Get immutable token regexp.
 

Methods in cz.cuni.mff.ksi.jinfer.base.regexp that return types with arguments of type Regexp
 List<Regexp<T>> Regexp.getChildren()
           
 

Methods in cz.cuni.mff.ksi.jinfer.base.regexp with parameters of type Regexp
 void Regexp.addChild(Regexp<T> child)
          Shorthand for getChildren().add().
 

Method parameters in cz.cuni.mff.ksi.jinfer.base.regexp with type arguments of type Regexp
static
<T> Regexp<T>
Regexp.getAlternation(List<Regexp<T>> children)
          Get immutable alternation regexp with interval set to {1, 1}.
static
<T> Regexp<T>
Regexp.getAlternation(List<Regexp<T>> children, RegexpInterval interval)
          Get immutable alternation regexp.
static
<T> Regexp<T>
Regexp.getConcatenation(List<Regexp<T>> children)
          Get immutable concatenation regexp with interval set to {1, 1}.
static
<T> Regexp<T>
Regexp.getConcatenation(List<Regexp<T>> children, RegexpInterval interval)
          Get immutable concatenation regexp.
static
<T> Regexp<T>
Regexp.getPermutation(List<Regexp<T>> children)
          Get immutable permutation regexp with interval set to {1, 1}.
static
<T> Regexp<T>
Regexp.getPermutation(List<Regexp<T>> children, RegexpInterval interval)
          Get immutable permutation regexp.
 

Constructor parameters in cz.cuni.mff.ksi.jinfer.base.regexp with type arguments of type Regexp
Regexp(T content, List<Regexp<T>> children, RegexpType type, RegexpInterval interval)
          Creates immutable regexp.
 

Uses of Regexp in cz.cuni.mff.ksi.jinfer.base.utils
 

Methods in cz.cuni.mff.ksi.jinfer.base.utils that return Regexp
 Regexp<AbstractStructuralNode> CloneHelper.cloneRegexp(Regexp<AbstractStructuralNode> r, List<String> contextPrefix)
          Clones a regular expression.
static Regexp<AbstractStructuralNode> TestUtils.getToken(AbstractStructuralNode n)
          Encapsulates the specified node into a mutable token regexp with interval "once".
 

Methods in cz.cuni.mff.ksi.jinfer.base.utils with parameters of type Regexp
 Regexp<AbstractStructuralNode> CloneHelper.cloneRegexp(Regexp<AbstractStructuralNode> r, List<String> contextPrefix)
          Clones a regular expression.
static Element TestUtils.getElement(String name, Regexp<AbstractStructuralNode> subnodes)
          Returns an element with provided name and subnodes.
static boolean IGGUtils.isSimpleConcatenation(Regexp<AbstractStructuralNode> r)
          Returns flag if the provided regexp is a simple concatenation.
static String TestUtils.regexpToStr(Regexp<AbstractStructuralNode> r)
          Returns a simple textual representation of specified regexp, fit for using in unit tests.
 

Uses of Regexp in cz.cuni.mff.ksi.jinfer.basicdtd
 

Methods in cz.cuni.mff.ksi.jinfer.basicdtd that return Regexp
 Regexp<AbstractStructuralNode> IntervalExpander.expandIntervalsRegexp(Regexp<AbstractStructuralNode> regexp)
           
 

Methods in cz.cuni.mff.ksi.jinfer.basicdtd with parameters of type Regexp
 Regexp<AbstractStructuralNode> IntervalExpander.expandIntervalsRegexp(Regexp<AbstractStructuralNode> regexp)
           
 

Uses of Regexp in cz.cuni.mff.ksi.jinfer.basicigg.dtd
 

Methods in cz.cuni.mff.ksi.jinfer.basicigg.dtd that return Regexp
static Regexp<AbstractStructuralNode> DTD2RETranslator.particle2Regexp(org.xmlmiddleware.schemas.dtds.Particle p, boolean simpleData)
          Translates the specified particle into jInfer-style regexp.
 

Uses of Regexp in cz.cuni.mff.ksi.jinfer.basicigg.expansion
 

Methods in cz.cuni.mff.ksi.jinfer.basicigg.expansion that return Regexp
static
<T> Regexp<T>
ExpansionHelper.getEmptyConcat()
          Returns an empty, immutable concatenation with interval "once".
 

Uses of Regexp in cz.cuni.mff.ksi.jinfer.basicruledisplayer.logic
 

Methods in cz.cuni.mff.ksi.jinfer.basicruledisplayer.logic with parameters of type Regexp
 Image NodePainter.drawNode(Regexp<AbstractStructuralNode> r, int level)
          Renders an abstract node and returns its image representation.
 

Uses of Regexp in cz.cuni.mff.ksi.jinfer.basicxsd.utils
 

Methods in cz.cuni.mff.ksi.jinfer.basicxsd.utils with parameters of type Regexp
static boolean RegexpTypeUtils.isLambdaNodeAlternation(Regexp<AbstractStructuralNode> regexp)
          Determines whether a given regexp is alternation of lambda and a node.
static boolean RegexpTypeUtils.isLambdaTokenAlternation(Regexp<AbstractStructuralNode> regexp)
          Determines whether a given regexp is alternation of lambda and a token.
static boolean RegexpTypeUtils.isSimpleDataTokenAlternation(Regexp<AbstractStructuralNode> regexp)
          Determines whether a given regexp is alternation of a SIMPLE_DATA token and any token.
 

Uses of Regexp in cz.cuni.mff.ksi.jinfer.treeruledisplayer.logic
 

Methods in cz.cuni.mff.ksi.jinfer.treeruledisplayer.logic that return types with arguments of type Regexp
 List<Regexp<AbstractStructuralNode>> Utils.getRoots()
          Get list of regexp which are represented as root vertex in each rule tree.
 

Methods in cz.cuni.mff.ksi.jinfer.treeruledisplayer.logic with parameters of type Regexp
static String Utils.getVertexLabel(Regexp<? extends AbstractNamedNode> regexp, boolean trim)
           
 Shape Utils.getVertexShape(edu.uci.ics.jung.visualization.util.VertexShapeFactory<Regexp<? extends AbstractNamedNode>> shapeFactory, Regexp<? extends AbstractNamedNode> regexp)
          Get Shape of Vertex for particular Regexp.
 Shape VertexShapeTransformer.transform(Regexp<? extends AbstractNamedNode> regexp)
           
 Integer VertexSizeTransformer.transform(Regexp<? extends AbstractNamedNode> regexp)
           
 Paint VertexColorTransformer.transform(Regexp<? extends AbstractNamedNode> regexp)
           
 String RegexpTransformer.transform(Regexp<? extends AbstractNamedNode> regexp)
           
 

Method parameters in cz.cuni.mff.ksi.jinfer.treeruledisplayer.logic with type arguments of type Regexp
 Shape Utils.getVertexShape(edu.uci.ics.jung.visualization.util.VertexShapeFactory<Regexp<? extends AbstractNamedNode>> shapeFactory, Regexp<? extends AbstractNamedNode> regexp)
          Get Shape of Vertex for particular Regexp.
 

Constructor parameters in cz.cuni.mff.ksi.jinfer.treeruledisplayer.logic with type arguments of type Regexp
Utils(List<Regexp<AbstractStructuralNode>> roots)
          Default contructor.
VertexColorTransformer(List<Regexp<AbstractStructuralNode>> roots)
          Default contructor.
VertexSizeTransformer(List<Regexp<AbstractStructuralNode>> roots)
          Default contructor.
 

Uses of Regexp in cz.cuni.mff.ksi.jinfer.twostep.cleaning
 

Methods in cz.cuni.mff.ksi.jinfer.twostep.cleaning that return Regexp
 Regexp<T> RegularExpressionCleaner.cleanRegularExpression(Regexp<T> regexp)
          Clean given regular expression.
 

Methods in cz.cuni.mff.ksi.jinfer.twostep.cleaning with parameters of type Regexp
 Regexp<T> RegularExpressionCleaner.cleanRegularExpression(Regexp<T> regexp)
          Clean given regular expression.
 

Uses of Regexp in cz.cuni.mff.ksi.jinfer.twostep.cleaning.chained
 

Methods in cz.cuni.mff.ksi.jinfer.twostep.cleaning.chained that return Regexp
 Regexp<T> Chained.cleanRegularExpression(Regexp<T> regexp)
           
 

Methods in cz.cuni.mff.ksi.jinfer.twostep.cleaning.chained with parameters of type Regexp
 Regexp<T> Chained.cleanRegularExpression(Regexp<T> regexp)
           
 

Uses of Regexp in cz.cuni.mff.ksi.jinfer.twostep.cleaning.cleanernull
 

Methods in cz.cuni.mff.ksi.jinfer.twostep.cleaning.cleanernull that return Regexp
 Regexp<T> Null.cleanRegularExpression(Regexp<T> regexp)
           
 

Methods in cz.cuni.mff.ksi.jinfer.twostep.cleaning.cleanernull with parameters of type Regexp
 Regexp<T> Null.cleanRegularExpression(Regexp<T> regexp)
           
 

Uses of Regexp in cz.cuni.mff.ksi.jinfer.twostep.cleaning.emptychildren
 

Methods in cz.cuni.mff.ksi.jinfer.twostep.cleaning.emptychildren that return Regexp
 Regexp<T> EmptyChildren.cleanRegularExpression(Regexp<T> regexp)
           
 

Methods in cz.cuni.mff.ksi.jinfer.twostep.cleaning.emptychildren with parameters of type Regexp
 Regexp<T> EmptyChildren.cleanRegularExpression(Regexp<T> regexp)
           
 

Uses of Regexp in cz.cuni.mff.ksi.jinfer.twostep.cleaning.nestedconcatenation
 

Methods in cz.cuni.mff.ksi.jinfer.twostep.cleaning.nestedconcatenation that return Regexp
 Regexp<T> NestedConcatenation.cleanRegularExpression(Regexp<T> regexp)
           
 

Methods in cz.cuni.mff.ksi.jinfer.twostep.cleaning.nestedconcatenation with parameters of type Regexp
 Regexp<T> NestedConcatenation.cleanRegularExpression(Regexp<T> regexp)
           
 

Uses of Regexp in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.evaluating.regexpbitcode
 

Methods in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.evaluating.regexpbitcode with parameters of type Regexp
 double BitCode.evaluate(Regexp<T> x)
           
 

Uses of Regexp in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.evaluating.regexptokensize
 

Methods in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.evaluating.regexptokensize with parameters of type Regexp
 double TokenSize.evaluate(Regexp<T> x)
           
 

Uses of Regexp in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.evaluating.regexptostringsize
 

Methods in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.evaluating.regexptostringsize with parameters of type Regexp
 double ToStringSize.evaluate(Regexp<T> x)
           
 

Uses of Regexp in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping
 

Methods in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping that return Regexp
 Regexp<T> RegexpAutomatonSimplifier.simplify(RegexpAutomaton<T> inputAutomaton, SymbolToString<Regexp<T>> symbolToString)
          Convert input RegexpAutomaton to Regexp which represents same language.
 

Method parameters in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping with type arguments of type Regexp
 Regexp<T> RegexpAutomatonSimplifier.simplify(RegexpAutomaton<T> inputAutomaton, SymbolToString<Regexp<T>> symbolToString)
          Convert input RegexpAutomaton to Regexp which represents same language.
 

Uses of Regexp in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping.stateremoval
 

Methods in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping.stateremoval that return types with arguments of type Regexp
 Step<Regexp<T>> StateRemovalRegexpAutomaton.collapseStateParallelSteps(State<Regexp<T>> state)
           
 List<Step<Regexp<T>>> StateRemovalRegexpAutomaton.getLoopSteps(State<Regexp<T>> state)
          Get loops of state.
 State<Regexp<T>> StateRemovalRegexpAutomaton.getSuperFinalState()
          Get superFinalState.
 State<Regexp<T>> StateRemovalRegexpAutomaton.getSuperInitialState()
          Get superInitialState.
 

Method parameters in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping.stateremoval with type arguments of type Regexp
 Step<Regexp<T>> StateRemovalRegexpAutomaton.collapseStateParallelSteps(State<Regexp<T>> state)
           
 List<Step<Regexp<T>>> StateRemovalRegexpAutomaton.getLoopSteps(State<Regexp<T>> state)
          Get loops of state.
 void StateRemovalRegexpAutomaton.removeState(State<Regexp<T>> _state)
          Removes from automaton state given by by-passing its {in | out}-transitions.
 

Uses of Regexp in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping.stateremoval.heuristic
 

Methods in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping.stateremoval.heuristic that return Regexp
 Regexp<T> StateRemovalHeuristic.simplify(RegexpAutomaton<T> inputAutomaton, SymbolToString<Regexp<T>> symbolToString)
           
 

Method parameters in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping.stateremoval.heuristic with type arguments of type Regexp
 Regexp<T> StateRemovalHeuristic.simplify(RegexpAutomaton<T> inputAutomaton, SymbolToString<Regexp<T>> symbolToString)
           
 

Uses of Regexp in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping.stateremoval.ordered
 

Methods in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping.stateremoval.ordered that return Regexp
 Regexp<T> StateRemovalOrdered.simplify(RegexpAutomaton<T> inputAutomaton, SymbolToString<Regexp<T>> symbolToString)
           
 

Method parameters in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping.stateremoval.ordered with type arguments of type Regexp
 Regexp<T> StateRemovalOrdered.simplify(RegexpAutomaton<T> inputAutomaton, SymbolToString<Regexp<T>> symbolToString)
           
 

Uses of Regexp in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping.stateremoval.ordered.ordering
 

Methods in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping.stateremoval.ordered.ordering that return types with arguments of type Regexp
 State<Regexp<T>> Orderer.getStateToRemove(StateRemovalRegexpAutomaton<T> automaton, SymbolToString<Regexp<T>> symbolToString)
          Get the best state to remove first from automaton.
 

Method parameters in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping.stateremoval.ordered.ordering with type arguments of type Regexp
 State<Regexp<T>> Orderer.getStateToRemove(StateRemovalRegexpAutomaton<T> automaton, SymbolToString<Regexp<T>> symbolToString)
          Get the best state to remove first from automaton.
 

Uses of Regexp in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping.stateremoval.ordered.ordering.fullscan
 

Methods in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping.stateremoval.ordered.ordering.fullscan that return types with arguments of type Regexp
 State<Regexp<T>> Fullscan.getStateToRemove(StateRemovalRegexpAutomaton<T> automaton, SymbolToString<Regexp<T>> symbolToString)
           
 

Method parameters in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping.stateremoval.ordered.ordering.fullscan with type arguments of type Regexp
 State<Regexp<T>> Fullscan.getStateToRemove(StateRemovalRegexpAutomaton<T> automaton, SymbolToString<Regexp<T>> symbolToString)
           
 

Uses of Regexp in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping.stateremoval.ordered.ordering.userinteractive
 

Methods in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping.stateremoval.ordered.ordering.userinteractive that return types with arguments of type Regexp
 State<Regexp<T>> UserInteractive.getStateToRemove(StateRemovalRegexpAutomaton<T> automaton, SymbolToString<Regexp<T>> symbolToString)
           
 

Method parameters in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping.stateremoval.ordered.ordering.userinteractive with type arguments of type Regexp
 State<Regexp<T>> UserInteractive.getStateToRemove(StateRemovalRegexpAutomaton<T> automaton, SymbolToString<Regexp<T>> symbolToString)
           
 

Uses of Regexp in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping.stateremoval.ordered.ordering.weighted
 

Methods in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping.stateremoval.ordered.ordering.weighted that return types with arguments of type Regexp
 State<Regexp<T>> Weighted.getStateToRemove(StateRemovalRegexpAutomaton<T> automaton, SymbolToString<Regexp<T>> symbolToString)
           
 

Method parameters in cz.cuni.mff.ksi.jinfer.twostep.processing.automatonmergingstate.regexping.stateremoval.ordered.ordering.weighted with type arguments of type Regexp
 State<Regexp<T>> Weighted.getStateToRemove(StateRemovalRegexpAutomaton<T> automaton, SymbolToString<Regexp<T>> symbolToString)
           
 

Uses of Regexp in cz.cuni.mff.ksi.jinfer.twostep.processing.trie
 

Methods in cz.cuni.mff.ksi.jinfer.twostep.processing.trie with parameters of type Regexp
static void Trie.addBranchToTree(Regexp<AbstractStructuralNode> tree, Regexp<AbstractStructuralNode> branch)
          TODO vektor comment
static void Trie.addBranchToTree(Regexp<AbstractStructuralNode> tree, Regexp<AbstractStructuralNode> branch)
          TODO vektor comment
 


jInfer

Generated on Fri Dec 9 00:01:25 CET 2011