com.bestcode.mathparser
Class MathParserFactory

java.lang.Object
  extended bycom.bestcode.mathparser.MathParserFactory

public abstract class MathParserFactory
extends java.lang.Object

MathParserFactory is used to create an implementation of IMathParser interface. This is the main parser engine.


Method Summary
static IMathParser create()
          Creates the object that implements IMathParser interface.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

create

public static IMathParser create()
Creates the object that implements IMathParser interface. If you wish to extend the parser implementation by deriving from the implementation, current implementation class name is com.bestcode.mathparser.MathParserImpl.

However, for any unforeseen reason that name or constructor can change. If you change the original implementation, please rename the package, so that when deployed, there is no conflict with other user's classpaths that contain the original implementation. Bestcode will try to make sure future versions will not break older ones.