view core/src/luan/impl/Settable.java @ 671:82f130eba7b0

improve declarations
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 12 Apr 2016 14:44:10 -0600
parents 067d9470184d
children
line wrap: on
line source

package luan.impl;

import luan.LuanException;


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