Package de.maramuse.soundcomp.parser.math

Examples of de.maramuse.soundcomp.parser.math.Ident


  /**
   * set the formula of this assignment to an input or variable name
   * @param element the input or variable name
   */
  public InputAssignment setFormula(Element element){
  this.formula=new Ident("ident");
  ((Ident)this.formula).setIdentity(element);
  return this;
  }
View Full Code Here

TOP

Related Classes of de.maramuse.soundcomp.parser.math.Ident

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.