Package org.dayatang.rule.examples

Examples of org.dayatang.rule.examples.Person


    private Person yyang;

    @Before
    public void setUp() {

        chencao = new Person(1L, "chencao", "male");
        xishi = new Person(2L, "xishi", "female");
        yyang = new Person(3L, "yyang", "male");
    }
View Full Code Here


  private Person yyang;

  @Before
  public void setUp() throws Exception {
    instance = createStatefulRuleTemplate();
    chencao = new Person(1L, "chencao", "male");
    xishi = new Person(2L, "xishi", "female");
    yyang = new Person(3L, "yyang", "male");
  }
View Full Code Here

TOP

Related Classes of org.dayatang.rule.examples.Person

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.