Package models

Examples of models.Question


    }

   
    public static void provision() {
      for(int i=0; i<100; i++){
        Question q = new Question(
            "question",
            "answer",
            "slug",
            100L,
            30L,
            1L);
       
        q.insert();
      }
      render();
     
    }
View Full Code Here

TOP

Related Classes of models.Question

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.