Examples of Node


Examples of org.picketlink.idm.impl.tree.Node

     * @param id
     */
    void putGtnGroupId(String ns, String pLIDMId, String id) {
        Fqn nodeFqn = getFqn(ns, NODE_GTN_GROUP_ID, pLIDMId);

        Node ioNode = addNode(nodeFqn);

        if (ioNode != null) {
            ioNode.put(NODE_OBJECT_KEY, id);

            if (log.isTraceEnabled()) {

                log.trace(this.toString() + "GateIn group id cached. PLIDM group id: " + pLIDMId + "GateIn group id: " + id
                        + ";namespace=" + ns);

Examples of org.planx.routing.kademlia.Node

        super.receive(incoming, comm);

        QueueMessage myMessage = (QueueMessage) incoming;
        OriginMessage mess = (OriginMessage) incoming;
      System.out.println("TestReceiver.java: TestMessage \""+myMessage.toString()+ "\" recieved at " + local.toString() + " from " + mess.getOrigin());
        Node origin = mess.getOrigin();       
        //List nodes = space.getClosestNodes(mess.getLookupId());
        Message reply = new InReplyMessage(local,"","Test");
        server.reply(comm, reply, origin.getInetAddress(), origin.getPort());
        System.out.println("ReplyMessage sent to " + origin.toString() + " from " + local.toString());
    }

Examples of org.prevayler.cluster.Node

  private Node node;
  private List receivedMessages = new ArrayList();

  protected void setUp() throws Exception {
    super.setUp();
    node = new Node();
    receivedMessages = new ArrayList();
  }

Examples of org.rhq.helpers.perftest.support.jpa.Node

    private static void resolvePks(IDatabaseConnection connection, EntityDependencyGraph edg,
        DependencyInclusionResolver inclusionResolver, Map<Class<?>, Set<ColumnValues>> primaryPks,
        ColumnValuesTableMap resolvedPks) throws SQLException {
        for (Map.Entry<Class<?>, Set<ColumnValues>> entry : primaryPks.entrySet()) {
            Node node = edg.getNode(entry.getKey());
            Set<ColumnValues> pks = entry.getValue();

            //check that the pk columns have defined names from the user
            if (pks != null) {
                for (ColumnValues pk : pks) {
                    int idx = 0;
                    for (ColumnValues.Column col : pk) {
                        if (col.getName() == null) {
                            col.setName(node.getTranslation().getPkColumns()[idx]);
                        }

                        idx++;
                    }
                }

Examples of org.richfaces.context.IdParser.Node

    private void walk(UIComponent component, String baseId, int nodeIdx) {

        boolean isLastNode = (nodeIdx == parsedId.length - 1);

        Node node = parsedId[nodeIdx];

        Collection<String> directSubtreeIds;
        UIComponent childComponent;

        if (node.getFunction() == null) {
            directSubtreeIds = Collections.singleton(node.getImage());
            childComponent = component;
        } else {
            directSubtreeIds = evaluateFunction(component, baseId, node);
            // functionTarget is set inside evaluateFunction(...) call!
            childComponent = functionTarget;

Examples of org.rsbot.client.Node

    if (!ctx.game.isLoggedIn()) {
      return;
    }
    final FontMetrics metrics = render.getFontMetrics();
    for (final int element : ctx.client.getRSNPCIndexArray()) {
      final Node node = ctx.nodes.lookup(ctx.client.getRSNPCNC(), element);
      if (node == null || !(node instanceof RSNPCNode)) {
        continue;
      }
      final RSNPC npc = new RSNPC(ctx, ((RSNPCNode) node).getRSNPC());
      final Point location = ctx.calc.tileToScreen(npc.getLocation(), npc.getHeight() / 2);

Examples of org.sdnplatform.sync.internal.config.Node

            waitForValue(unsyncStore, "localNodeId", null,
                         3000, "unsyncStore" + i);
            short nodeId =
                    Short.parseShort(unsyncStore.getValue("localNodeId"));
            Node node = nodeStore.getValue(nodeId);
            nodeIds.add(nodeId);
            nodes.add(node);

            while (syncManager.getClusterConfig().
                    getNode().getNodeId() != nodeId) {

Examples of org.semanticweb.HermiT.tableau.Node

    }
    public void clear() {
        m_directBlockingChecker.clear();
    }
    public void computeBlocking(boolean finalChance) {
        Node node=m_tableau.getFirstTableauNode();
        while (node!=null) {
            if (node.isActive()) {
                Node parent=node.getParent();
                if (parent==null)
                    node.setBlocked(null,false);
                else if (parent.isBlocked())
                    node.setBlocked(parent,false);
                else if (m_useBlockingSignatureCache && m_blockingSignatureCache!=null && m_blockingSignatureCache.containsSignature(node))
                    node.setBlocked(Node.SIGNATURE_CACHE_BLOCKER,true);
                else
                    checkParentBlocking(node);

Examples of org.semanticweb.owlapi.reasoner.Node

            return true;
        }
        if(!(obj instanceof Node)) {
            return false;
        }
        Node other = (Node) obj;
        return entities.equals(other.getEntities());
    }

Examples of org.semanticweb.yars.nx.Node

    Node[] next = it.next();

    Resource subject = (Resource)next[0];
    Resource predicate = (Resource)next[1];
    Node object = next[2];
   
    // WARNING: Don't clean up the subject yet ! We must only do it *after* the merge, else
    // The merge won't be made in the same order as the Unix sort

    // Clean the predicate
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.