* @param o
* @throws RulesException
*/
public void entitypush(IREntity o) throws RulesException {
if (entitystkptr >= 1000) {
throw new RulesException("Entity Stack Overflow", o.stringValue(), "Entity Stack overflow.");
}
if((state & TRACE) > 0){
traceInfo("entitypush","entity",o.getName().stringValue(), "id",o.getID()+"",null);
}
entitystk[entitystkptr++] = o;