Examples of derive()


Examples of org.pentaho.reporting.engine.classic.core.layout.model.RenderNode.derive()

      final RenderNode[] nodes = text.clone();
      final int nodeCount = nodes.length;
      for (int i = 0; i < nodeCount; i++)
      {
        final RenderNode node = nodes[i];
        nodes[i] = node.derive(true);
      }
      return nodes;
    }

    public RenderNode[] getFinish()
View Full Code Here

Examples of org.pentaho.reporting.engine.classic.core.layout.model.RenderNode.derive()

      final RenderNode[] nodes = finish.clone();
      final int nodeCount = nodes.length;
      for (int i = 0; i < nodeCount; i++)
      {
        final RenderNode node = nodes[i];
        nodes[i] = node.derive(true);
      }
      return nodes;
    }
  }
View Full Code Here

Examples of org.pentaho.reporting.engine.classic.core.layout.model.RenderNode.derive()

    super.endSection();

    for (int i = slotCounter; i < slots.size(); i++)
    {
      final RenderNode node = slots.get(i);
      parentBox.addGeneratedChild(node.derive(true));
    }
  }

  public InstanceID createSubflowPlaceholder(final ReportElement element)
  {
View Full Code Here

Examples of org.pentaho.reporting.engine.classic.core.layout.output.crosstab.RenderedCrosstabLayout.derive()

      sl.renderedCrosstabLayouts.clear();
      final int rSize = renderedCrosstabLayouts.size();
      for (int i = 0; i < rSize; i++)
      {
        final RenderedCrosstabLayout o = renderedCrosstabLayouts.get(i);
        sl.renderedCrosstabLayouts.push(o.derive());
      }
      return sl;
    }
    catch (final CloneNotSupportedException e)
    {
View Full Code Here

Examples of org.pentaho.reporting.engine.classic.core.layout.output.crosstab.RenderedCrosstabLayout.derive()

      sl.renderedCrosstabLayouts.clear();
      final int rSize = renderedCrosstabLayouts.size();
      for (int i = 0; i < rSize; i++)
      {
        final RenderedCrosstabLayout o = renderedCrosstabLayouts.get(i);
        sl.renderedCrosstabLayouts.push(o.derive());
      }
      return sl;
    }
    catch (final CloneNotSupportedException e)
    {
View Full Code Here

Examples of org.pentaho.reporting.engine.classic.core.states.datarow.DefaultFlowController.derive()

    {
      // make it a minimum effort report, but still enter the loop.
      final ReportDefinition parentReport = parentState.getReport();
      final SubReport dummyReport = new SubReport(functionStorageKey.getReportId());
      this.report = new ReportDefinitionImpl(dummyReport, parentReport.getPageDefinition(), subreportFromMarker.getParentSection());
      this.flowController = parentStateFlowController.derive();
      this.advanceHandler = EndSubReportHandler.HANDLER;
      this.layoutProcess = new SubLayoutProcess
          (parentState.layoutProcess, computeStructureFunctions(initialSubReport.getStructureFunctions(),
              flowController.getReportContext().getOutputProcessorMetaData()), this.report.getObjectID());
    }
View Full Code Here

Examples of org.pentaho.reporting.engine.classic.core.style.ElementStyleSheet.derive()

      }
      clone.rules = (ArrayList<ElementStyleSheet>) rules.clone();
      for (int i = 0; i < rules.size(); i++)
      {
        final ElementStyleSheet styleDefinition = rules.get(i);
        clone.rules.set(i, styleDefinition.derive(preserveIds));
      }
      return clone;
    }
    catch (CloneNotSupportedException e)
    {
View Full Code Here

Examples of org.powerbot.game.api.wrappers.Tile.derive()

        }

        if (!Calculations.isOnScreen(entity.getCentralPoint())) {
            synchronized (mouseLock) {
                final Tile randTile = new Tile(loc.getX(), loc.getY(), loc.getPlane());
                randTile.derive(Random.nextInt(-1, 2), Random.nextInt(-1, 2));
                final LocalPath localPath = Walking.findPath(randTile.canReach() ? randTile : loc);
                localPath.getNext();
                final Tile[] tilePath = truncatePath(localPath.getTilePath().toArray(), 3);
                (new TilePath(tilePath)).traverse();
            }
View Full Code Here

Examples of org.raist.config.Config.derive()

      for(int i = path.size() - 1; i >= 0; i--) {

        String node = path.get(i);
        Config c = manager.getConfig(node);
        c.derive(builder);
      }
    }
  }
}
View Full Code Here

Examples of sun.java2d.pipe.hw.ExtendedBufferCapabilities.derive()

                    // change the caps that we pass to the peer but keep on
                    // trying to create v-synced buffers;
                    // do not throw IAE here in case it is disallowed, see
                    // ExtendedBufferCapabilities for more info
                    if (!VSyncedBSManager.vsyncAllowed(this)) {
                        caps = ebc.derive(VSYNC_DEFAULT);
                    }
                }
            }

            peer.createBuffers(numBuffers, caps);
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.