package Portugol.Language.Calcular;
import java.util.Vector;
public class Functions extends AbstractCalculus{
public static String VERSION = "Versão:2.0 \t(c)Augusto Bilabila e David Silva Barrera";
private FuncoesMatematicas math = new FuncoesMatematicas();
private FuncaoTexto txt = new FuncaoTexto();
public boolean IsValid( Object str){
return math.IsValid(str ) || txt.IsValid(str);
}
public int GetNumParameters(Object oper)throws Exception{
if( math.IsValid(oper) ) return math.GetNumParameters(oper);
if( txt.IsValid(oper) ) return txt.GetNumParameters(oper);
throw new Exception("ERRO 013:\nOPERADOR DE FUNCOES DESCONHECIDO :" + oper );
}
public int GetPriority(Object oper)throws Exception{
if( math.IsValid(oper) ) return math.GetPriority(oper);
if( txt.IsValid(oper) ) return txt.GetPriority(oper);
throw new Exception("ERRO 013:\nOPERADOR DE FUNCOES DESCONHECIDO :" + oper );
}
public String Calculate( Object oper , Vector params)throws Exception{
if( math.IsValid(oper) ) return math.Calculate(oper,params);
if( txt.IsValid(oper) ) return txt.Calculate(oper,params);
throw new Exception("ERRO 013:\nOPERADOR DE FUNCOES DESCONHECIDO :" + oper );
}
}