view core/src/luan/impl/Settable.java @ 326:db37d6aee4db

remove try-catch statement; add Luan.try() and Luan.pcall(); git-svn-id: https://luan-java.googlecode.com/svn/trunk@327 21e917c8-12df-6dd8-5cb6-c86387c605b9
author fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
date Thu, 19 Mar 2015 00:01:57 +0000
parents 3dcb0f9bee82
children 067d9470184d
line wrap: on
line source

package luan.impl;

import luan.LuanException;


interface Settable {
	public void set(LuanStateImpl luan,Object value) throws LuanException;
}