/**
	Projeto - DWR Calls Library (Projeto-dwrCalls-lib) v: 0.1
	Developer(s):
		+ Diogo Silva (diogo.ferreira@hellointeractive.com.br)
*/

function getExampleById(id){
	Class.method({
		param:id
		}, getExampleByIdReturn);
}

function getExampleByIdReturn(obj){
	doSomethingWith(obj);
	return true;
}