Package lupos.gui.operatorgraph.visualeditor.visualrif.guielements.operatorPanel

Examples of lupos.gui.operatorgraph.visualeditor.visualrif.guielements.operatorPanel.FrameOperatorPanel



  @Override
  public AbstractGuiComponent<Operator> draw(GraphWrapper gw,
      VisualGraph<Operator> parent) {
    this.panel = new FrameOperatorPanel(parent, gw, this,
         this.startNode,
        this.alsoSubClasses, this.visualRifEditor);
    return this.panel;
  }
View Full Code Here



      // FrameOperator
      if( comp[i] instanceof FrameOperatorPanel ){
        System.out.println("EIN Frame!!!");
        final FrameOperatorPanel fop = (FrameOperatorPanel) comp[i];

        for (int j = 0; j < fop.getFrameOperator().getTerms().size(); j++) {

          if((fop.getFrameOperator().getTerms().get(j).isConstant() || fop.getFrameOperator().getTerms().get(j).isVariable()) && !this.listContainsElement(varTerms,fop.getFrameOperator().getTerms().get(j).getValue())){
            varTerms.add(fop.getFrameOperator().getTerms().get(j));
          }

        }

      } // end FrameOperator
View Full Code Here


      // FrameOperator
      if( comp[i] instanceof FrameOperatorPanel ){

        final FrameOperatorPanel fop = (FrameOperatorPanel) comp[i];

        for (int j = 0; j < fop.getFrameOperator().getTerms().size(); j++) {

          if(fop.getFrameOperator().getTerms().get(j).isVariable() && !this.listContainsElement(varTerms,fop.getFrameOperator().getTerms().get(j).getValue())){
            varTerms.add(fop.getFrameOperator().getTerms().get(j));
          }

        }

      } // end FrameOperator
View Full Code Here


      // FrameOperator
      if( comp[i] instanceof FrameOperatorPanel ){

        final FrameOperatorPanel fop = (FrameOperatorPanel) comp[i];

        for (int j = 0; j < fop.getFrameOperator().getTerms().size(); j++) {

          if(!this.listContainsElement(varTerms,fop.getFrameOperator().getTerms().get(j).getValue())){
            varTerms.add(fop.getFrameOperator().getTerms().get(j));
          }

        }

      } // end FrameOperator
View Full Code Here

      opY = uop.getY();
      distance = 90;
    }
    if (ato instanceof FrameOperator){
      FrameOperator fo = (FrameOperator) ato;
      FrameOperatorPanel fop = fo.getFrameOperatorPanel();
      width = fop.getWidth();
      height = fop.getHeight();
      opX = fop.getX();
      opY = fop.getY();
      distance = 50;
    }
    if (ato instanceof ListOperator) {
      ListOperator lo = (ListOperator) ato;
      ListOperatorPanel lop = lo.getListOperatorPanel();
View Full Code Here

TOP

Related Classes of lupos.gui.operatorgraph.visualeditor.visualrif.guielements.operatorPanel.FrameOperatorPanel

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.