Examples of convertLabelToLabel()


Examples of statechum.analysis.learning.rpnicore.Transform.ConvertALabel.convertLabelToLabel()

                final ConvertALabel converter = ErlangModule.loadModule(grOrig.config).behaviour.new ConverterModToErl();
              AbstractLearnerGraph.interpretLabelsOnGraph(grOrig,grNew,new Transform.ConvertLabel(new ConvertALabel() {
           
            @Override
            public Label convertLabelToLabel(Label label) {
              ErlangLabel lbl = (ErlangLabel)converter.convertLabelToLabel(label);
              return new ErlangLabel(null, lbl.callName.replace(moduleName, ""), lbl.input, lbl.expectedOutput);
            }
          }));
              grNew.setName(grOrig.getNameNotNull()+"-nomodule");
              updateFrameWithPos(grNew, strippedFrameNumber++);
View Full Code Here
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.