Examples of addTarget()


Examples of ca.uhn.fhir.model.dstu.resource.Conformance.RestResourceSearchParam.addTarget()

            for (Class<? extends IResource> nextTarget : nextParameter.getDeclaredTypes()) {
              RuntimeResourceDefinition targetDef = myRestfulServer.getFhirContext().getResourceDefinition(nextTarget);
              if (targetDef != null) {
                ResourceTypeEnum code = ResourceTypeEnum.VALUESET_BINDER.fromCodeString(targetDef.getName());
                if (code != null) {
                  param.addTarget(code);
                }
              }
            }
           
          }
View Full Code Here

Examples of com.dragome.compiler.units.ProcedureUnit.addTarget()

  }

  public void addReference(MethodDeclaration decl, FieldAccess fa)
  {
    ProcedureUnit source= getOrCreateProcedureUnit(decl.getMethodBinding());
    source.addTarget(Project.singleton.getSignature(fa));
  }

  public void addReference(MethodDeclaration decl, MethodInvocation invocation)
  {
    ProcedureUnit source= getOrCreateProcedureUnit(decl.getMethodBinding());
View Full Code Here

Examples of com.jigen.ant.Installer.addTarget()

    Installer antInstaller = new Installer();
   
    antInstaller.setDestination(getFile(installer.getDestination()));
   
    for(OsName.Enum target : installer.getTargetArray())
      antInstaller.addTarget(target.toString());
   
    return antInstaller;
  }

  private File getFile(String file)
View Full Code Here

Examples of com.opengamma.engine.MapComputationTargetResolver.addTarget()

    final String calculationConfigName = "config_1";

    EquitySecurity aapl = new EquitySecurity("EXCH", "EXCH_CODE", "APPLE", Currency.USD);
    aapl.setUniqueId(UniqueId.of("Sec", "APPL"));
    ComputationTarget target = new ComputationTarget(ComputationTargetType.SECURITY, aapl);
    computationTargetResolver.addTarget(target);

    _compTargetSpec = target.getLeafSpecification();
    _requirement = new ValueRequirement("FAIR_VALUE", _compTargetSpec);
    _specification = new ValueSpecification("FAIR_VALUE", _compTargetSpec, ValueProperties.with(ValuePropertyNames.FUNCTION, "IDENTITY_FUNCTION").get());
View Full Code Here

Examples of com.opengamma.engine.depgraph.DependencyGraphBuilder.addTarget()

    builder.setMarketDataAvailabilityProvider(availabilityProvider);
    final ResolutionFailureAccumulator resolutionFailureAccumulator = new ResolutionFailureAccumulator();
    builder.setResolutionFailureListener(resolutionFailureAccumulator);
    builder.setDisableFailureReporting(false);
    for (final ValueRequirement requirement : properties.getRequirements()) {
      builder.addTarget(requirement);
    }
    DependencyGraph dependencyGraph = builder.getDependencyGraph();
    List<ResolutionFailure> resolutionFailures = resolutionFailureAccumulator.getResolutionFailures();

    DependencyGraphBuildTrace graphBuildTrace = DependencyGraphBuildTrace.of(
View Full Code Here

Examples of com.thoughtworks.xstream.tools.benchmark.Harness.addTarget()

        } catch (ParseException e) {
            e.printStackTrace();
        }
       
        harness.addMetric(new DeserializationSpeedMetric(counter, false));
        harness.addTarget(new BasicTarget());
        harness.addTarget(new ExtendedTarget());
        harness.addTarget(new ReflectionTarget());
        harness.addTarget(new SerializableTarget());
        harness.addTarget(new JavaBeanTarget());
        if (false) {
View Full Code Here

Examples of fr.adrienbrault.idea.symfony2plugin.doctrine.dict.DoctrineModelField.addTarget()

        List<DoctrineModelField> modelFields = new ArrayList<DoctrineModelField>();
        for(YAMLKeyValue yamlKey: PsiTreeUtil.getChildrenOfTypeAsList(yamlCompoundValue, YAMLKeyValue.class)) {
            String fieldName = YamlHelper.getYamlKeyName(yamlKey);
            if(fieldName != null) {
                DoctrineModelField modelField = new DoctrineModelField(fieldName);
                modelField.addTarget(yamlKey);
                attachYamlFieldTypeName(keyName, modelField, yamlKey);
                modelFields.add(modelField);
            }
        }
View Full Code Here

Examples of hype.extended.behavior.HSwarm.addTarget()

        .speed(5)
        .twitch(15)
        .turnEase(.05f);
    for(HDrawable d : pool) {
      d.loc(random(width), random(height)).size(5);
      swarm.addTarget(d);
    }
//    new HTween()
//      .target(H.add(new HRect()).locAt(H.CENTER).anchorAt(H.CENTER))
//      .property(H.ROTATIONY)
//      .start(0).end(45)
View Full Code Here

Examples of mage.abilities.Ability.addTarget()

    this.power = new MageInt(7);
    this.toughness = new MageInt(7);

    this.addAbility(FlyingAbility.getInstance());
    Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new VengefulArchonEffect(), new ManaCostsImpl("{X}"));
    ability.addTarget(new TargetPlayer());
    this.addAbility(ability);
  }

  public VengefulArchon(final VengefulArchon card) {
    super(card);
View Full Code Here

Examples of mage.abilities.LoyaltyAbility.addTarget()

    this.color.setRed(true);
    this.color.setWhite(true);
    this.loyalty = new MageInt(3);

    LoyaltyAbility ability1 = new LoyaltyAbility(new SkipNextUntapTargetEffect(), 1);
    ability1.addTarget(new TargetPermanent());
    this.addAbility(ability1);

    Effects effects1 = new Effects();
    effects1.add(new DamageTargetEffect(3));
    effects1.add(new GainLifeEffect(3));
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.