//-------------------------------------------------------------------------------------------------- // // @ CopyRight Roberti & Parau Enterprises, Inc. 2021-2023 // // This work is licensed under the Creative Commons Attribution-NoDerivatives 4.0 International License. // To view a copy of this license, visit http://creativecommons.org/licenses/by-nd/4.0/ // or send a letter to Creative Commons, PO Box 1866, Mountain View, CA 94042, USA. // //-------------------------------------------------------------------------------------------------- package framework; public class DVThread extends Thread { public DVThread(Runnable run) { super(run); } public DVStatements.Statement getEvalOwner() { return this.evalOwner; } public void setEvalOwner(DVStatements.Statement evalOwner) { this.evalOwner= evalOwner; } private DVStatements.Statement evalOwner= null; }