Examples of addArgument()


Examples of com.antlersoft.ilanalyze.Signature.addArgument()

          {
            CustomAttributeSetting.NamedArgument named=i.next();
            if ( named.isProperty())
            {
              Signature s=new Signature();
              s.addArgument( new ReadArg(named.getType()));
              s.setReturnType( void_read_type);
              DBMethod propertySetter=getCurrentClass(custom.getContainingType()).getMethod("set_"+named.getName(), void_type, getSignatureKey( s));
              if ( propertySetter.updateArguments(m_db, s))
                ObjectDB.makeDirty( propertySetter);
              attrUpdater.addCall(propertySetter, m_current_source_file, m_current_line);
View Full Code Here

Examples of com.clearnlp.dependency.srl.SRLTree.addArgument()

    {
      node  = get(i);
      label = node.getSLabel(pred);
     
      if (label != null)
        tree.addArgument(node, label);
    }
   
    return tree;
  }
 
View Full Code Here

Examples of com.dragome.compiler.ast.MethodInvocation.addArgument()

  public void visit(ClassLiteral literal)
  {
    MethodBinding binding= MethodBinding.lookup("java.lang.Class", "forName", "(Ljava/lang/String;)Ljava/lang/Class;");
    MethodInvocation mi= new MethodInvocation(currentMethodDeclaration, binding);
    mi.addArgument(new StringLiteral(literal.getSignature().toString()));
    visit(mi);
  }

  public void visit(NullLiteral literal)
  {
View Full Code Here

Examples of com.illposed.osc.OSCMessage.addArgument()

    }
    moveToFourByteBoundry();
    for (int i = 0; i < types.size(); ++i) {
      if ('[' == types.get(i).charValue()) {
        // we're looking at an array -- read it in
        message.addArgument(readArray(types, ++i).toArray());
        // then increment i to the end of the array
        while (types.get(i).charValue() != ']') {
          i++;
        }
      } else {
View Full Code Here

Examples of com.litecoding.smali2java.entity.smali.Instruction.addArgument()

        innerRule instanceof Rule_listSeparator)
        continue;
     
      if(innerRule instanceof Rule_codeLabel) {
          Label innerLabel = EntityFactory.createLabel(innerRule.rules.get(1).spelling);
          command.addArgument(innerLabel);
      } else if(innerRule instanceof Terminal_StringValue) {
        if(!cmdDetermined) {
          cmdDetermined = true;
          command = EntityFactory.createInstruction(innerRule.spelling, null);
        }       
View Full Code Here

Examples of com.litecoding.smali2java.entity.smali.RegisterGroup.addArgument()

  public Object visit(Rule_codeRegisterGroup rule) {
    RegisterGroup group = new RegisterGroup();
    for(Rule innerRule : rule.rules) {
      if(innerRule instanceof Rule_codeRegisterV ||
         innerRule instanceof Rule_codeRegisterP) {
        group.addArgument((SmaliCodeEntity)innerRule.accept(this));
      }
    }
    return group;
 
View Full Code Here

Examples of com.mountainminds.eclemma.internal.core.launching.AgentArgumentSupport.addArgument()

    final AgentServer server = coverageLaunch.getAgentServer();
    server.start();

    // Delegate to run mode launcher
    final AgentArgumentSupport argSupport = new AgentArgumentSupport();
    final ILaunchConfiguration adjusted = argSupport.addArgument(
        server.getPort(), configuration);
    launchdelegate.launch(adjusted, DELEGATELAUNCHMODE, launch,
        new SubProgressMonitor(monitor, 1));

    monitor.done();
View Full Code Here

Examples of com.omertron.themoviedbapi.tools.ApiUrl.addArgument()

     * @throws MovieDbException
     */
    public TmdbResultsList<PersonCredit> getPersonCredits(int personId, String... appendToResponse) throws MovieDbException {
        ApiUrl apiUrl = new ApiUrl(apiKey, BASE_PERSON, "/credits");

        apiUrl.addArgument(PARAM_ID, personId);
        apiUrl.appendToResponse(appendToResponse);

        URL url = apiUrl.buildUrl();
        String webpage = requestWebPage(url);

View Full Code Here

Examples of com.oracle.tools.runtime.java.SimpleJavaApplicationSchema.addArgument()

    logger.info("  classpath: {}", classpath);

    SimpleJavaApplicationSchema schema = new SimpleJavaApplicationSchema(clz.getName(), classpath);
    if (args != null) {
      for (String arg : args) {
        schema.addArgument(arg);
      }
    }
    if (systemProperties != null) {
      schema.setSystemProperties(new PropertiesBuilder(systemProperties));
    }
View Full Code Here

Examples of com.volantis.mcs.integration.iapi.ArgumentsElement.addArgument()

        pageContext.pushIAPIElement(invoke);

        ArgumentsElement element = new ArgumentsElement();       
        // call elementStart to ensure we have our parent.
        element.elementStart(requestContext, null);
        element.addArgument(argName, argValue);
        int result = element.elementEnd(requestContext, null);
        assertEquals("Unexpected result from elementEnd.",
                IAPIConstants.CONTINUE_PROCESSING, result);
       
        assertTrue("InvokeElement.setArguments should have been invoked.",
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.