Package com.ketayao.ketacustom.spring.DataControlXML

Examples of com.ketayao.ketacustom.spring.DataControlXML.Condition


* @since   2014年1月17日 上午10:53:04
*/
public class DataControlXMLTest {
  @Test
  public void testCreateXML() throws Exception {
    Condition condition = new Condition();
    condition.setName("条件标题1");
    condition.setContent("条件内容1");
   
    Condition condition2 = new Condition();
    condition2.setName("条件标题2");
    condition2.setContent("条件内容2");
   
    DataControlXML bean = new DataControlXML();
    bean.getItems().add(condition);
    bean.getItems().add(condition2);

View Full Code Here

TOP

Related Classes of com.ketayao.ketacustom.spring.DataControlXML.Condition

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.