INT-2238 removing warnings in JavaDoc

This commit is contained in:
Mark Fisher
2011-11-22 21:38:04 -05:00
parent b1680a0cdf
commit 6c1454ae3d
16 changed files with 47 additions and 58 deletions

View File

@@ -10,6 +10,7 @@
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*/
package org.springframework.integration.scripting;
import java.util.Map;
@@ -23,18 +24,14 @@ import org.springframework.scripting.ScriptSource;
public interface ScriptExecutor {
/**
*
* @param scriptSource
* @return
*/
public abstract Object executeScript(ScriptSource scriptSource);
/**
*
* @param scriptSource
* @param variables -bind variable
* @return
*/
public abstract Object executeScript(ScriptSource scriptSource,Map<String,Object> variables);
}
}