Examples of render()


Examples of org.olat.ims.qti.container.qtielements.Objectives.render()

    if (objectives != null) {
      StringBuilder sbTmp = new StringBuilder();
      Resolver resolver = ai.getResolver();
      RenderInstructions ri = new RenderInstructions();
      ri.put(RenderInstructions.KEY_STATICS_PATH, resolver.getStaticsBaseURI() + "/");
      objectives.render(sbTmp, ri);
      sb.append(sbTmp);
    }
    // if Menu not visible, or if visible but not selectable, and itemPage sequence (one question per page) 
    // show button to navigate to the first question of the current section     
    IQMenuDisplayConf menuDisplayConfig = comp.getMenuDisplayConf();
View Full Code Here

Examples of org.onemind.awtbridge.peer.BridgePeer.render()

    public void renderOutput(Object comObject, Object output) throws RenderingException
    {
        BridgePeer peer = getContext().getPeer(comObject);
        if (peer != null)
        {
            peer.render(this, output);
        } else
        {
            throw new IllegalStateException("component " + comObject + " has no peer");
        }
    }
View Full Code Here

Examples of org.openfaces.renderkit.table.TableFooter.render()

        renderRows(context, fileAttachments, childData, fileAttachments.getValue());
        writer.endElement("tbody");

        TableFooter tableFooter = tableStructure.getFooter();
        if (tableFooter.isContentSpecified()) {
            tableFooter.render(context, null);
        }
        writer.endElement("table");
    }

    @Override
View Full Code Here

Examples of org.openfaces.renderkit.table.TableHeader.render()

        writer.writeAttribute("id", clientId + ATTACHMENTS_LIST_ID, null);

        TableStructure tableStructure = childData.getTableStructure();
        TableHeader tableHeader = tableStructure.getHeader();
        if (tableHeader.isContentSpecified()) {
            tableHeader.render(context, null);
        }
        writer.startElement("tbody", fileAttachments);
        renderRows(context, fileAttachments, childData, fileAttachments.getValue());
        writer.endElement("tbody");
View Full Code Here

Examples of org.openstreetmap.josm.data.osm.visitor.paint.Rendering.render()

            g.setPaint(hatched);
            g.fill(a);
        }

        Rendering painter = MapRendererFactory.getInstance().createActiveRenderer(g, mv, inactive);
        painter.render(data, virtual, box);
        Main.map.conflictDialog.paintConflicts(g, mv);
    }

    @Override public String getToolTipText() {
        int nodes = new FilteredCollection<>(data.getNodes(), OsmPrimitive.nonDeletedPredicate).size();
View Full Code Here

Examples of org.opoo.press.Renderer.render()

   
    String name = isContentRenderRequired ? renderer.prepareWorkingTemplate(getLayout(), isValidLayout,
        getContent(), isContentRenderRequired,
        getSource().getSourceEntry())
        : renderer.getLayoutWorkingTemplate(getLayout());
    String output = renderer.render(name, rootMap);
//    String output = getRenderer().render(getLayout(), getContent(), getSource().getSourceEntry(), rootMap);
    setContent(output);
  }

  protected String getUrlForOutputFile(){
View Full Code Here

Examples of org.orcateam.report.engine.docx.DocXReport.render()

        FormView view = new FormView();
        view.setPeeps(peopleList);

        orcaReport.put("view", view);

        byte[] output = orcaReport.render();
        writeTestResults(output);

    }

    private List<People> generateRelatives(Integer peopleCountModifier, Integer ageModifier, Integer personIndex) {
View Full Code Here

Examples of org.orcateam.report.engine.docx.renderer.DocXParagraphRenderer.render()

                    }
                    removingBodyElements.add(body.getBodyElements().indexOf(endElement));
                    renderElement(body, bodyIterator, removingBodyElements, element, context);
                } else {
                    DocXParagraphRenderer paragraphRenderer = new DocXParagraphRenderer(element, this, context);
                    paragraphRenderer.render();
                }
                break;
            case TABLE:
                for (XWPFTableRow row : ((XWPFTable) element).getRows()) {
                    for (XWPFTableCell cell : row.getTableCells()) {
View Full Code Here

Examples of org.orcateam.report.engine.docx.renderer.DocXTableRenderer.render()

                    IBodyElement tableEnd = bodyIterator.next();
                    if (!isOrcaTableEnd(tableEnd)) {
                        throw new OrcaExpressionInvalidFormatException();
                    }
                    DocXTableRenderer tableRenderer = new DocXTableRenderer(tableElement, this, element, context);
                    tableRenderer.render();
                    // we need to iterate each cell only if it has table
                    for (XWPFTableRow row : ((XWPFTable) tableElement).getRows()) {
                        for (XWPFTableCell cell : row.getTableCells()) {
                            int rowindex = ((XWPFTable) tableElement).getRows().indexOf(row);
                            int colindex = row.getTableCells().indexOf(cell);
View Full Code Here

Examples of org.pdfclown.documents.contents.ContentScanner.render()

    Graphics2D context,
    Dimension2D size
    )
  {
    ContentScanner scanner = new ContentScanner(getContents());
    scanner.render(context,size);
  }

  // <IContentEntity>
  @Override
  public ContentObject toInlineObject(
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.