123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- /*
- * This program is free software: you can redistribute it and/or modify it under
- * the terms of the GNU General Public License as published by the Free Software
- * Foundation, either version 3 of the License, or (at your option) any later
- * version.
- *
- * This program is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
- * details.
- *
- * You should have received a copy of the GNU General Public License along with
- * this program. If not, see <http://www.gnu.org/licenses/>.
- */
- package com.l2jserver.gameserver.scripting;
- import java.io.File;
- import java.io.Serializable;
- import javax.script.CompiledScript;
- /**
- *
- * @author KenM
- */
- public class CompiledScriptHolder implements Serializable
- {
- /**
- * Version 1
- */
- private static final long serialVersionUID = 1L;
-
- private long _lastModified;
- private long _size;
- private CompiledScript _compiledScript;
-
- /**
- * @param compiledScript
- * @param lastModified
- * @param size
- */
- public CompiledScriptHolder(CompiledScript compiledScript, long lastModified, long size)
- {
- _compiledScript = compiledScript;
- _lastModified = lastModified;
- _size = size;
- }
-
- public CompiledScriptHolder(CompiledScript compiledScript, File scriptFile)
- {
- this(compiledScript, scriptFile.lastModified(), scriptFile.length());
- }
-
- /**
- * @return Returns the lastModified.
- */
- public long getLastModified()
- {
- return _lastModified;
- }
-
- /**
- * @param lastModified The lastModified to set.
- */
- public void setLastModified(long lastModified)
- {
- _lastModified = lastModified;
- }
-
- /**
- * @return Returns the size.
- */
- public long getSize()
- {
- return _size;
- }
-
- /**
- * @param size The size to set.
- */
- public void setSize(long size)
- {
- _size = size;
- }
-
- /**
- * @return Returns the compiledScript.
- */
- public CompiledScript getCompiledScript()
- {
- return _compiledScript;
- }
-
- /**
- * @param compiledScript The compiledScript to set.
- */
- public void setCompiledScript(CompiledScript compiledScript)
- {
- _compiledScript = compiledScript;
- }
-
- public boolean matches(File f)
- {
- return f.lastModified() == this.getLastModified() && f.length() == this.getSize();
- }
- }
|