/**
 * license (MIT) Copyright Nubisa Inc. 2014
 */

package jxm;

public class CustomMethodsBase {

    protected Client client = null;

    public void SetClient(Client _client) {
        client = _client;
    }

}
