IEvaluator.java :  » Algebra » symja » org » matheclipse » core » interfaces » Java Open Source

Java Open Source » Algebra » symja 
symja » org » matheclipse » core » interfaces » IEvaluator.java
package org.matheclipse.core.interfaces;

/**
 * An IEvaluator can be linked to an ISymbol to define
 * the evaluation behaviour of the symbol at creation time.
 *
 */
public interface IEvaluator {

  /**
   * This method will be called every time a new ISymbol will be created.
   * In this method you can set ISymbol attributes or constants for the symbol
   *
   * @param symbol the symbol which should be set up
   */
  public void setUp(ISymbol symbol);
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.