Tabnine Logo
ReteNode.getTypeNode
Code IndexAdd Tabnine to your IDE (free)

How to use
getTypeNode
method
in
jadex.rules.rulesystem.rete.nodes.ReteNode

Best Java code snippets using jadex.rules.rulesystem.rete.nodes.ReteNode.getTypeNode (Showing top 4 results out of 315)

origin: net.sourceforge.jadex/jadex-rules

clone.typenodes.put(type, getTypeNode(type).clone());
origin: org.activecomponents.jadex/jadex-rules

/**
 *  Add a new type node.
 *  @param type The type node.
 *  @param context the build context.
 */
protected void addTypeNode(OAVObjectType type, BuildContext context)
{
  assert type!=null : "***" + context;
  // Create new type node, if necessary 
  INode node = context.getRootNode().getTypeNode(type);
  if(node==null)
  {
    node = new TypeNode(context.getRootNode().getNextNodeId(), type);
    connectRight(context.getRootNode(), node, context);
  }
  context.setLastAlphaNode(node);
}    
 
origin: org.activecomponents.jadex/jadex-rules

clone.typenodes.put(type, getTypeNode(type).clone());
origin: net.sourceforge.jadex/jadex-rules

/**
 *  Add a new type node.
 *  @param type The type node.
 *  @param context the build context.
 */
protected void addTypeNode(OAVObjectType type, BuildContext context)
{
  assert type!=null : "***" + context;
  // Create new type node, if necessary 
  INode node = context.getRootNode().getTypeNode(type);
  if(node==null)
  {
    node = new TypeNode(context.getRootNode().getNextNodeId(), type);
    connectRight(context.getRootNode(), node, context);
  }
  context.setLastAlphaNode(node);
}    
 
jadex.rules.rulesystem.rete.nodesReteNodegetTypeNode

Javadoc

Get the node for a type.

Popular methods of ReteNode

  • getTerminalNode
    Set the terminal node for a rule.
  • <init>
    Create a new rete system.
  • addObject
    Tell the condition system about a new object in the state.
  • addRule
    Add a rule to the network.
  • checkConsistency
    Check consistency of Rete network/memory. For debugging. Only performs some simple checks and does n
  • clone
  • getIndirectNodes
    Get the set of indirectly affected nodes for an attribute type.
  • getInitialFactNode
    Get the initial fact node (if any).
  • getNextNodeId
    Get the next nodecounter.
  • getRelevantAttributes
    Get the set of relevant attribute types.
  • getTypeNodes
    Get the set of matching type nodes for a (sub)type.
  • modifyObject
    Tell the condition system about a modified object in the state.
  • getTypeNodes,
  • modifyObject,
  • putTerminalNode,
  • removeObject,
  • removeRule,
  • setInited,
  • getBuilder

Popular in Java

  • Reading from database using SQL prepared statement
  • scheduleAtFixedRate (Timer)
  • getExternalFilesDir (Context)
  • notifyDataSetChanged (ArrayAdapter)
  • Pointer (com.sun.jna)
    An abstraction for a native pointer data type. A Pointer instance represents, on the Java side, a na
  • GridBagLayout (java.awt)
    The GridBagLayout class is a flexible layout manager that aligns components vertically and horizonta
  • String (java.lang)
  • JButton (javax.swing)
  • JFileChooser (javax.swing)
  • LogFactory (org.apache.commons.logging)
    Factory for creating Log instances, with discovery and configuration features similar to that employ
  • From CI to AI: The AI layer in your organization
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now