1 package com.genimen.djeneric.tools.generator.core.util;2 3 public interface Convention4 {5 6 public Object call(Object self, String function, Object [] params, ParseContext context) throws Exception ;7 8 public Object staticCall(String function, Object [] params, ParseContext context) throws Exception ;9 10 }