Examples of render()


Examples of com.apress.prospring.ch2.MessageRenderer.render()

    public static void main(String[] args) throws Exception {

        // get the bean factory
        BeanFactory factory = getBeanFactory();
        MessageRenderer mr = (MessageRenderer) factory.getBean("renderer");
        mr.render();
    }

    private static BeanFactory getBeanFactory() throws Exception {
        // get the bean factory
        BeanFactory factory = new XmlBeanFactory(new FileSystemResource(
View Full Code Here

Examples of com.ardor3d.renderer.TextureRenderer.render()

        texRend.enforceStates(enforcedStates);

        // draw to texture
        if (spatial != null) {
            texRend.render(spatial, _texture, Renderer.BUFFER_COLOR_AND_DEPTH);
        } else {
            texRend.render(spatials, _texture, Renderer.BUFFER_COLOR_AND_DEPTH);
        }

        texRend.clearEnforcedStates();
View Full Code Here

Examples of com.ardor3d.util.scenegraph.RenderDelegate.render()

                if (r.checkAndAdd(this)) {
                    return;
                }
            }

            delegate.render(this, r);
        }
    }

    /**
     * <code>updateWorldBound</code> merges the bounds of all the children maintained by this node. This will allow for
View Full Code Here

Examples of com.badlogic.gdx.graphics.Mesh.render()

      Gdx.gl.glEnable(GL20.GL_BLEND);
      if (blendSrcFunc != -1) Gdx.gl.glBlendFunc(blendSrcFunc, blendDstFunc);
    }

    if (Gdx.graphics.isGL20Available())
      mesh.render(customShader != null ? customShader : shader, GL10.GL_TRIANGLES, 0, count);
    else
      mesh.render(GL10.GL_TRIANGLES, 0, count);

    idx = 0;
    currBufferIdx++;
View Full Code Here

Examples of com.bbn.openmap.omGraphics.OMCircle.render()

                // get the map projection
                Projection proj = theMap.getProjection();
                // prepare the circle for rendering
                circle.generate(proj);
                // render the circle graphic
                circle.render(g);
            }
        } // end if(displayCircle)
    }

    /**
 
View Full Code Here

Examples of com.bbn.openmap.omGraphics.OMGraphic.render()

                            && obj instanceof LinkProperties) {
                        String id = ((LinkProperties) obj).getProperty(LPC_GRAPHICID);
                        Debug.output("LinkOMGraphicList: Rendering graphic "
                                + id);
                    }
                    graphic.render(gr);
                }
            }

        } else {
            iterator = graphics.listIterator();
View Full Code Here

Examples of com.bbn.openmap.omGraphics.OMGraphicList.render()

            OMGraphicList graphics;
            graphics = new OMGraphicList(toDraw);
            graphics.generate(getProjection(), true);//all new
            // graphics
            logger.info("rendering toDraw " + toDraw.size() + " items");
            graphics.render(g);
        }
    }

    /**
     * Creates an OMGraphicList containing graphics from all
View Full Code Here

Examples of com.bbn.openmap.omGraphics.OMLine.render()

            // get the map projection
            Projection proj = theMap.getProjection();
            // prepare the line for rendering
            cLine.generate(proj);
            // render the line graphic
            cLine.render(g);
        }
    }

    /**
     * Draw a rubberband circle between two points
View Full Code Here

Examples of com.bj58.argo.ActionResult.render()

            ActionResult result = router.route(beat);

            if (ActionResult.NULL == result)
                result = statusCodeActionResult.getSc404();

            result.render(beat);

        } catch (Exception e) {

            statusCodeActionResult.render405(beat);
View Full Code Here

Examples of com.cawring.simple.result.ViewResult.render()

   * @return
   */
  public Result html(String path, Model model)
  {
    ViewResult html = new HtmlResult(path, model, request, response);
    return html.render();
  }
 
  /**
   *
   * <pre>
 
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.