Package lupos.misc.debug

Examples of lupos.misc.debug.BasicOperatorByteArray


      if (!BooleanDatatype.getValues("operatorGraph_useStyledBoxes").get(0).booleanValue()) {
        DrawObject.drawSimpleBoxOuterLines(g2d, 0, 0, size.width - 1, size.height - 1, Color.WHITE, Color.BLACK);
      } else {
        DrawObject drawObject = null;

        final BasicOperatorByteArray operator = (BasicOperatorByteArray) this.element;

        final byte type = operator.getTypeASByte();

        drawObject = this.getOperatorStyle("operatorGraph_style_" + MAPPING_OPERATORTYPE_TO_PREFERENCES[type]);

        if (drawObject != null) {
          drawObject.draw(g2d, 0, 0, size.width, size.height);
View Full Code Here


      final OperatorGraph parent) {
    final Hashtable<GraphWrapper, AbstractSuperGuiComponent> annotations = new Hashtable<GraphWrapper, AbstractSuperGuiComponent>();

    for (final OperatorIDTuple<BasicOperatorByteArray> opIDt : ((BasicOperatorByteArray) this.element)
        .getSucceedingOperators()) {
      final BasicOperatorByteArray op = opIDt.getOperator();

      if (op.isMultiInputOperator()) {
        final GraphWrapperBasicOperatorByteArray gw = new GraphWrapperBasicOperatorByteArray(op);

        final AbstractSuperGuiComponent annotation = new AnnotationPanel(parent, gw, Integer.toString(opIDt.getId()));

        annotations.put(gw, annotation);
View Full Code Here

TOP

Related Classes of lupos.misc.debug.BasicOperatorByteArray

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.