Uses of Class
org.eclipse.ocl.examples.standalone.StandaloneCommand.CommandToken

Packages that use StandaloneCommand.CommandToken
org.eclipse.ocl.examples.standalone   
org.eclipse.ocl.examples.standalone.validity   
 

Uses of StandaloneCommand.CommandToken in org.eclipse.ocl.examples.standalone
 

Subclasses of StandaloneCommand.CommandToken in org.eclipse.ocl.examples.standalone
static class StandaloneCommand.StringToken
           
 

Fields in org.eclipse.ocl.examples.standalone with type parameters of type StandaloneCommand.CommandToken
protected  java.util.Map<java.lang.String,StandaloneCommand.CommandToken> StandaloneCommand.tokens
           
 

Methods in org.eclipse.ocl.examples.standalone that return types with arguments of type StandaloneCommand.CommandToken
 java.util.Collection<StandaloneCommand.CommandToken> StandaloneCommand.getTokens()
           
 java.util.Map<StandaloneCommand.CommandToken,java.util.List<java.lang.String>> HelpCommand.parse(java.lang.String[] arguments)
           
 java.util.Map<StandaloneCommand.CommandToken,java.util.List<java.lang.String>> StandaloneCommand.parse(java.lang.String[] arguments)
           
 

Methods in org.eclipse.ocl.examples.standalone with parameters of type StandaloneCommand.CommandToken
protected  void StandaloneCommand.addToken(StandaloneCommand.CommandToken commandToken)
           
 int HelpCommand.TokenComparator.compare(StandaloneCommand.CommandToken o1, StandaloneCommand.CommandToken o2)
           
 

Method parameters in org.eclipse.ocl.examples.standalone with type arguments of type StandaloneCommand.CommandToken
 boolean StandaloneCommand.check(java.util.Map<StandaloneCommand.CommandToken,java.util.List<java.lang.String>> token2strings)
           
 StandaloneResponse HelpCommand.execute(java.util.Map<StandaloneCommand.CommandToken,java.util.List<java.lang.String>> token2strings)
           
abstract  StandaloneResponse StandaloneCommand.execute(java.util.Map<StandaloneCommand.CommandToken,java.util.List<java.lang.String>> tokens)
           
 

Uses of StandaloneCommand.CommandToken in org.eclipse.ocl.examples.standalone.validity
 

Subclasses of StandaloneCommand.CommandToken in org.eclipse.ocl.examples.standalone.validity
static class ValidateCommand.ExporterToken
          An optional argument to specify which exporter should be used.
static class ValidateCommand.ModelToken
          A mandatory argument key of the model file path.
static class ValidateCommand.OutputToken
          An optional argument to define the output file path.
static class ValidateCommand.RulesToken
          A mandatory argument used to define the paths to the OCL documents containing the constraints to evaluate.
static class ValidateCommand.UsingToken
          An optional argument used if the user wishes to run all constraints or to only run the OCL, Java or UML constraints validation.
 

Method parameters in org.eclipse.ocl.examples.standalone.validity with type arguments of type StandaloneCommand.CommandToken
 boolean ValidateCommand.UsingToken.doRunJavaConstraints(java.util.Map<StandaloneCommand.CommandToken,java.util.List<java.lang.String>> token2strings)
           
 boolean ValidateCommand.UsingToken.doRunOCLConstraints(java.util.Map<StandaloneCommand.CommandToken,java.util.List<java.lang.String>> token2strings)
           
 boolean ValidateCommand.UsingToken.doRunUMLConstraints(java.util.Map<StandaloneCommand.CommandToken,java.util.List<java.lang.String>> token2strings)
           
 StandaloneResponse ValidateCommand.execute(java.util.Map<StandaloneCommand.CommandToken,java.util.List<java.lang.String>> token2strings)
           
 IValidityExporter ValidateCommand.ExporterToken.getExporter(java.util.Map<StandaloneCommand.CommandToken,java.util.List<java.lang.String>> token2strings)
           
 java.lang.String ValidateCommand.ModelToken.getModelFileName(java.util.Map<StandaloneCommand.CommandToken,java.util.List<java.lang.String>> token2strings)
           
 java.util.List<java.lang.String> ValidateCommand.RulesToken.getOCLFileNames(java.util.Map<StandaloneCommand.CommandToken,java.util.List<java.lang.String>> token2strings)
          Gets the collection of OCL resources deduced from values specified after the -rule argument.
 java.io.File ValidateCommand.OutputToken.getOutputFile(java.util.Map<StandaloneCommand.CommandToken,java.util.List<java.lang.String>> token2strings)