Package webit.script.resolvers.impl

Source Code of webit.script.resolvers.impl.ScriptVoidResolver

// Copyright (c) 2013-2014, Webit Team. All Rights Reserved.
package webit.script.resolvers.impl;

import webit.script.exceptions.ScriptRuntimeException;
import webit.script.io.Out;
import webit.script.lang.Void;
import webit.script.resolvers.GetResolver;
import webit.script.resolvers.OutResolver;
import webit.script.resolvers.SetResolver;

/**
*
* @author zqq90
*/
public class ScriptVoidResolver implements GetResolver, SetResolver, OutResolver {

    public Object get(Object object, Object property) {
        throw new ScriptRuntimeException("'Void' type has no property.");
    }

    public Class getMatchClass() {
        return Void.class;
    }

    public void set(Object object, Object property, Object value) {
        throw new ScriptRuntimeException("'Void' type has no property.");
    }

    public void render(Out out, Object bean) {
        //render nothing
    }

}
TOP

Related Classes of webit.script.resolvers.impl.ScriptVoidResolver

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.