Examples of expand()


Examples of mondrian.test.DiffRepository.expand()

            // output is a different order in the old behavior, and cannot be
            // fixed by a few sed-like comparisons.
            return;
        }
        DiffRepository diffRepos = getDiffRepos();
        String request = diffRepos.expand(null, "${request}");
        String expectedResponse = diffRepos.expand(null, "${response}");
        Element requestElem = XmlaUtil.text2Element(
            XmlaTestContext.xmlFromTemplate(
                request, XmlaTestContext.ENV));
        Element responseElem =
View Full Code Here

Examples of net.mcft.copy.betterstorage.misc.Region.expand()

    mapRegion = region;
  }
  /** Resizes the internal map region, copying the old data over. */
  private void resize() {
    Region newRegion = region.clone();
    newRegion.expand(2, 0, 2, 2, 2, 2);
    newRegion.minY /= 8;
    newRegion.maxY /= 8;
    resize(newRegion);
  }
 
View Full Code Here

Examples of net.minecraft.util.AxisAlignedBB.expand()

    {
      IBiometricIdentifier biometricIdentifier = this.getBiometricIdentifier();

      AxisAlignedBB emptyBounds = AxisAlignedBB.getBoundingBox(this.xCoord, this.yCoord, this.zCoord, this.xCoord + 1, this.yCoord + 1, this.zCoord + 1);

      List<EntityLivingBase> warningList = this.worldObj.getEntitiesWithinAABB(EntityLivingBase.class, emptyBounds.expand(getWarningRange(), getWarningRange(), getWarningRange()));
      List<EntityLivingBase> actionList = this.worldObj.getEntitiesWithinAABB(EntityLivingBase.class, emptyBounds.expand(getActionRange(), getActionRange(), getActionRange()));

      for (EntityLivingBase entityLiving : warningList)
      {
        if (entityLiving instanceof EntityPlayer && !actionList.contains(entityLiving))
View Full Code Here

Examples of net.sf.swtbot.widgets.SWTBotTreeItem.expand()

        final SWTBotTreeItem systemNode = SWTBotUtils.selectNode( bot, browserTree, "DIT", "Root DSE", "ou=system" );
        UIThreadRunnable.asyncExec( bot.getDisplay(), new UIThreadRunnable.VoidResult()
        {
            public void run()
            {
                systemNode.expand();
            }
        } );
        bot.sleep( 1000 );

        // click OK in the referral dialog
View Full Code Here

Examples of net.wastl.webmail.misc.ExpandableProperties.expand()

        final Properties expandProps = new Properties();
        expandProps.setProperty("rtconfig.dir", rtConfigDir.getAbsolutePath());
        expandProps.setProperty("app.contextpath", contextPath);
        expandProps.setProperty("deployment.name", deploymentName);
        try {
            metaProperties.expand(expandProps); // Expand ${} properties
        } catch (final Throwable t) {
            log.fatal("Failed to expand properties in meta file '"
                    + metaFile.getAbsolutePath() + "'", t);
            throw new IllegalStateException(
                    "Failed to expand properties in meta file '"
View Full Code Here

Examples of org.apache.abdera.i18n.templates.Route.expand()

    RequestContext context,
    Object key,
    Object param) {
    Route route = routes.get(key);
    return route != null?
      context.getContextPath() + route.expand(getContext(param)) : null;
  }
 
  @SuppressWarnings("unchecked")
  private Context getContext(Object param) {
    Context context = new EmptyContext();
View Full Code Here

Examples of org.apache.abdera.i18n.templates.Template.expand()

  public String urlFor(
    RequestContext request,
    Object key,
    Object param) {
      Template template = templates.get(key);
      return template != null ? template.expand(getContext(request,param)) : null;
  }

  public static class TemplateContext
    extends DelegatingContext {
View Full Code Here

Examples of org.apache.archiva.redback.components.evaluator.DefaultExpressionEvaluator.expand()

            {
                userConfigFilename = userConfigFileNameSysProps;
            }
            else
            {
                userConfigFilename = expressionEvaluator.expand( userConfigFilename );
            }
            altConfigFilename = expressionEvaluator.expand( altConfigFilename );
            loadConfiguration();
            handleUpgradeConfiguration();
        }
View Full Code Here

Examples of org.apache.archiva.redback.components.evaluator.DefaultExpressionEvaluator.expand()

            }
            else
            {
                userConfigFilename = expressionEvaluator.expand( userConfigFilename );
            }
            altConfigFilename = expressionEvaluator.expand( altConfigFilename );
            loadConfiguration();
            handleUpgradeConfiguration();
        }
        catch ( IndeterminateConfigurationException | RegistryException e )
        {
View Full Code Here

Examples of org.apache.archiva.redback.components.evaluator.ExpressionEvaluator.expand()

            {
                userConfigFilename = userConfigFileNameSysProps;
            }
            else
            {
                userConfigFilename = expressionEvaluator.expand( userConfigFilename );
            }
            altConfigFilename = expressionEvaluator.expand( altConfigFilename );
            loadConfiguration();
            handleUpgradeConfiguration();
        }
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.