Back to project page bad.
The source code is released under:
Copyright (C) 2013 Madis Pink Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Softwa...
If you think the Android project bad listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.madisp.bad.eval; //from w w w .j a va 2s . c om /** * Created with IntelliJ IDEA. * User: madis * Date: 5/9/13 * Time: 5:09 PM */ public interface Scope { void setVar(Object base, String var, Object newValue); Object getVar(Object base, String identifier); boolean hasVar(Object base, String identifier); Object callMethod(Object base, String name, Object... args); Scope getParent(); void rebase(Object newBase); Object getBase(); void addOnRebasedListener(OnScopeRebasedListener listener); public interface OnScopeRebasedListener { void onScopeDetached(Scope scope); void onScopeAttached(Scope scope); } }