Examples of Mattext


Examples of org.olat.ims.qti.editor.beecom.objects.Mattext

      } else if (cmd.equals("addtext")) {
        FIBQuestion fib = (FIBQuestion) item.getQuestion();
        FIBResponse response = new FIBResponse();
        response.setType(FIBResponse.TYPE_CONTENT);
        Material mat = new Material();
        mat.add(new Mattext(trnsltr.translate("newtextelement")));
        response.setContent(mat);
        fib.getResponses().add(response);
      } else if (cmd.equals("addblank")) {
        FIBQuestion fib = (FIBQuestion) item.getQuestion();
        FIBResponse response = new FIBResponse();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.