Package com.github.jknack.antlr4ide.ui.railroad.figures.primitives

Examples of com.github.jknack.antlr4ide.ui.railroad.figures.primitives.AbstractNode


  public NodeSegment(final EObject eObject, final NodeType nodeType, final String name,
      final String doc, final PrimitiveFigureFactory primitiveFactory, final Region textRegion) {
    super(eObject);
    this.name = name;
    AbstractNode node = primitiveFactory.createNode(nodeType, eObject, name, this, textRegion);
    setEntry(node);
    setExit(node);
    setToolTip(new Label(doc));
  }
View Full Code Here

TOP

Related Classes of com.github.jknack.antlr4ide.ui.railroad.figures.primitives.AbstractNode

Copyright © 2018 www.massapicom. 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.