Examples of Reference


Examples of de.lmu.ifi.dbs.elki.utilities.documentation.Reference

      String desc = DocumentationUtil.getDescription(pcls);
      if(desc != null && desc.length() > 0) {
        println(buf, width, desc, "  ");
      }

      Reference ref = DocumentationUtil.getReference(pcls);
      if(ref != null) {
        if(ref.prefix().length() > 0) {
          println(buf, width, ref.prefix(), "");
        }
        println(buf, width, ref.authors() + ":", "");
        println(buf, width, ref.title(), "  ");
        println(buf, width, "in: " + ref.booktitle(), "");
        if(ref.url().length() > 0) {
          println(buf, width, "see also: " + ref.url(), "");
        }
      }

      SerializedParameterization config = new SerializedParameterization();
      TrackParameters track = new TrackParameters(config);

Examples of dtool.ast.references.Reference

    return EArcheType.EnumMember;
  }
 
  @Override
  public void resolveSearchInMembersScope(CommonDefUnitSearch search) {
    Reference effectiveType = getEffectiveTypeReference();
    resolveSearchInReferredContainer(search, effectiveType);
  }

Examples of edu.mayo.bmi.guoqian.claml.Reference

    /**
     * Create an instance of {@link Reference }
     *
     */
    public Reference createReference() {
        return new Reference();
    }

Examples of eu.admire.dispel.references.Reference

      return Collections.emptyList();
    }
    Return modelElement = (Return) containerView.getElement();
    LinkedList<DispelNodeDescriptor> result = new LinkedList<DispelNodeDescriptor>();
    {
      Reference childElement = modelElement.getReturnValue();
      int visualID = DispelVisualIDRegistry.getNodeVisualID(view,
          childElement);
      if (visualID == ProcessingElementAnonymousDefinitionEditPart.VISUAL_ID) {
        result.add(new DispelNodeDescriptor(childElement, visualID));
      }

Examples of groovy.lang.Reference

     * @param name       the name of the node
     * @param args       the arguments passed into the node
     * @return the object from the factory
     */
    private Object doInvokeMethod(String methodName, Object name, Object args) {
        Reference explicitResult = new Reference();
        if (checkExplicitMethod(methodName, args, explicitResult)) {
            return explicitResult.get();
        } else {
            return dispathNodeCall(name, args);
        }
    }

Examples of info.bliki.wiki.model.Reference

        "\n"
            + "<p>A <sup id=\"_ref-1\" class=\"reference\"><a href=\"#_note-1\" title=\"\">[1]</a></sup> Test</p><ol class=\"references\">\n"
            + "<li id=\"_note-1\"><b><a href=\"#_ref-1\" title=\"\">&#8593;</a></b> Reference</li></ol>", wikiModel
            .render("A <ref>Reference</ref> Test\n\n<references/>", false));
    List<Reference> list = wikiModel.getReferences();
    Reference ref = list.get(0);
    assertTrue(ref.getRefString().equals("Reference"));
  }

Examples of io.crate.planner.symbol.Reference

        assertThat(analysis.columns().size(), is(analysis.getSubQueryColumns().size()));

        for (int i = 0; i < analysis.columns().size(); i++) {
            assertThat(analysis.getSubQueryColumns().get(i), instanceOf(DataTypeSymbol.class));
            DataTypeSymbol subQueryColumn = (DataTypeSymbol)analysis.getSubQueryColumns().get(i);
            Reference insertColumn = analysis.columns().get(i);
            assertThat(
                    subQueryColumn.valueType().isConvertableTo(insertColumn.valueType()),
                    is(true)
            );
        }

    }

Examples of java.lang.ref.Reference

  {
    CachedIntrospectionResults results = null;
    Object value = classCache.get(clazz);
    if (value instanceof Reference)
    {
      Reference ref = (Reference) value;
      results = (CachedIntrospectionResults) ref.get();
    }
    else
    {
      results = (CachedIntrospectionResults) value;
    }

Examples of javax.naming.Reference

    OutboundConnectionFactory factory =
      new OutboundQueueConnectionFactory(this,
                                         DefaultConnectionManager.getRef());

    Reference ref =
      new Reference(factory.getClass().getName(),
                    "org.objectweb.joram.client.connector.ObjectFactoryImpl",
                    null);
    ref.add(new StringRefAddr("hostName", hostName));
    ref.add(new StringRefAddr("serverPort", "" + serverPort));
    ref.add(new StringRefAddr("userName", userName));
    ref.add(new StringRefAddr("password", password));
    ref.add(new StringRefAddr("identityClass", identityClass));

    factory.setReference(ref);
    return factory;
  }

Examples of javax.xml.crypto.dsig.Reference

    private void test_create_signature_enveloping(
        SignatureMethod sm, DigestMethod dm, KeyInfo ki, Key signingKey, KeySelector ks
    ) throws Exception {

        // create reference
        Reference ref = fac.newReference("#DSig.Object_1", dm, null,
                                         XMLObject.TYPE, null);

        // create SignedInfo
        SignedInfo si = fac.newSignedInfo(withoutComments, sm,
                                          Collections.singletonList(ref));
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.