001
014
015 package com.liferay.taglib.aui.base;
016
017 import javax.servlet.jsp.JspException;
018
019
026 public abstract class BaseScriptTag extends com.liferay.taglib.util.PositionTagSupport {
027
028 @Override
029 public int doStartTag() throws JspException {
030 return super.doStartTag();
031 }
032
033 public boolean getSandbox() {
034 return _sandbox;
035 }
036
037 public java.lang.String getUse() {
038 return _use;
039 }
040
041 public void setSandbox(boolean sandbox) {
042 _sandbox = sandbox;
043 }
044
045 public void setUse(java.lang.String use) {
046 _use = use;
047 }
048
049 @Override
050 protected void cleanUp() {
051 _sandbox = false;
052 _use = null;
053 }
054
055 protected String getPage() {
056 return _PAGE;
057 }
058
059 private static final String _PAGE =
060 "/html/taglib/aui/script/page.jsp";
061
062 private boolean _sandbox = false;
063 private java.lang.String _use = null;
064
065 }