Examples of render()


Examples of com.jme3.material.Material.render()

        for (BitmapTextPage page : textPages) {
            Material mat = page.getMaterial();
            mat.setTexture("ColorMap", page.getTexture());
            //ColorRGBA original = getColor(mat, "Color");           
            //mat.setColor("Color", color);
            mat.render(page, rm);
           
            //if( original == null ) {
            //    mat.clearParam("Color");
            //} else {
            //    mat.setColor("Color", original);
View Full Code Here

Examples of com.jpoweredcart.common.view.Pagination.render()

    int total = returnStatusAdminModel.getTotal();
    Pagination pagination = new Pagination();
    pagination.setTotal(total).setPageParam(pageParam)
      .setText(message(request, "text.pagination"))
      .setUrl(uri("/admin/localisation/returnStatus"));
    model.addAttribute("pagination", pagination.render());
   
    return "/admin/localisation/returnStatusList";
  }
 
  @RequestMapping(value="/admin/localisation/returnStatus/create")
View Full Code Here

Examples of com.kitfox.svg.SVGDiagram.render()

          }
          else {
            g.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_OFF);
            g.setRenderingHint(RenderingHints.KEY_INTERPOLATION, RenderingHints.VALUE_INTERPOLATION_BILINEAR);
          }
          diagram.render(g);

          Pixel pixel = new Pixel();
          _points = new ArrayList<Point>();

          int xMin = imgMap.getImageWidth() - 1, xMax = 0;
View Full Code Here

Examples of com.kitfox.svg.SVGRoot.render()

        SVGRoot root = diagram.getRoot();
        root.setAttribute( "width", AnimationElement.AT_XML, Double.toString( width ));
        root.setAttribute( "height", AnimationElement.AT_XML, Double.toString( height ));
        root.build();  
        diagram.setIgnoringClipHeuristic( true );
        root.render( g2d );
      }
    }
    catch ( Exception ex )
    {
      ex.printStackTrace();
View Full Code Here

Examples of com.liferay.faces.bridge.context.RenderRedirectWriter.render()

    else {

      // In the case that a render-redirect took place, need to render the buffered markup to the response.
      if (writer instanceof RenderRedirectWriter) {
        RenderRedirectWriter responseOutputWriter = (RenderRedirectWriter) writer;
        responseOutputWriter.render();
      }
    }
  }

  @Override
View Full Code Here

Examples of com.liferay.portal.struts.PortletAction.render()

              question.getQuestionId());

          PortletAction pa = (PortletAction)InstancePool.get(
            ViewAction.class.getName());

          return pa.render(mapping, form, config, req, res);
        }
        catch (NoSuchQuestionException nsne) {
          req.removeAttribute(WebKeys.POLLS_DISPLAY);

          SessionErrors.add(
View Full Code Here

Examples of com.litecoding.smali2java.entity.java.MethodCall.render()

          var.setName(((Register)regEntity).getName());
          methodCall.getParams().add(var);
        }
       
        if(smaliClass.getSuperClassName().equals("Ljava/lang/Object;"))
          entity = new Comment(methodCall.render());
       
        entities.add(entity);
      }
    }
   
View Full Code Here

Examples of com.medallia.spider.sttools.StTool.render()

      }
      @Override public StringTemplate getEmbeddedInstanceOf(StringTemplate enclosingInstance, String name) throws IllegalArgumentException {
        final StTool t = getStTool(name);
        if (t != null) return new StringTemplate() {
          @Override public int write(StringTemplateWriter out) throws IOException {
            String s = t.render(this).toString();
            out.write(s);
            return s.length();
          }
        };
        return super.getEmbeddedInstanceOf(enclosingInstance, name);
View Full Code Here

Examples of com.mojang.minecraft.Entity.render()

                              if(!var2.isBoxInFrustrum(var24.x0, var24.y0, var24.z0, var24.x1, var24.y1, var24.z1)) {
                                 continue;
                              }
                           }

                           var22.render(var3, var4);
                        }
                     }
                  }
               }
            }
View Full Code Here

Examples of com.mojang.minecraft.gui.FontRenderer.render()

            Block.blocks[var15].renderFullbright(var7);
            var7.end();
            GL11.glPopMatrix();
            if(var8.count[var12] > 1) {
               var23 = "" + var8.count[var12];
               var5.render(var23, var26 + 19 - var5.getWidth(var23), var14 + 6, 16777215);
            }
         }
      }

      var5.render("0.30", 2, 2, 16777215);
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.