Package org.emftrace.core.rules.validator

Examples of org.emftrace.core.rules.validator.RuleValidator


   *
   * @return new RuleValidator-component
   */
  public static RuleValidator createRuleValidator()
  {
    return new RuleValidator();
  }
View Full Code Here


public class EMFTraceCoreFactoryTest extends EMFTraceBaseTest
{
    @Test
    public void testCreateRuleValidator()
    {
      RuleValidator tmp = null;
      assertNull(tmp);
      tmp = EMFTraceCoreFactory.createRuleValidator();
      assertNotNull(tmp);
    }
View Full Code Here

TOP

Related Classes of org.emftrace.core.rules.validator.RuleValidator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.