view core/src/luan/LuanProperty.java @ 360:cbb94a7c7a9e

allow mail attachments; add String.to_binary and Binary.to_string;
author Franklin Schmidt <fschmidt@gmail.com>
date Wed, 15 Apr 2015 11:32:30 -0600
parents 392105b660d7
children
line wrap: on
line source

package luan;


public abstract class LuanProperty {

	public abstract Object get();

	// return whether handled.  if not handled, then this object will be replaced
	public boolean set(Object value) {
		return false;
	}

}