📄 treecontroltag.java
字号:
public void release() {
this.action = null;
this.images = DEFAULT_IMAGES;
this.scope = null;
this.style = null;
this.styleSelected = null;
this.styleUnselected = null;
this.tree = null;
}
// ------------------------------------------------------ Protected Methods
/**
* Return the <code>TreeControl</code> instance for the tree control that
* we are rendering.
*
* @exception JspException if no TreeControl instance can be found
*/
protected TreeControl getTreeControl() throws JspException {
Object treeControl = null;
if (scope == null)
treeControl = pageContext.findAttribute(tree);
else if ("page".equals(scope))
treeControl =
pageContext.getAttribute(tree, PageContext.PAGE_SCOPE);
else if ("request".equals(scope))
treeControl =
pageContext.getAttribute(tree, PageContext.REQUEST_SCOPE);
else if ("session".equals(scope))
treeControl =
pageContext.getAttribute(tree, PageContext.SESSION_SCOPE);
else if ("application".equals(scope))
treeControl =
pageContext.getAttribute(tree, PageContext.APPLICATION_SCOPE);
if (treeControl == null)
throw new JspException("Cannot find tree control attribute '" +
tree + "'");
else if (!(treeControl instanceof TreeControl))
throw new JspException("Invalid tree control attribute '" +
tree + "'");
else
return ((TreeControl) treeControl);
}
/**
* Render the specified node, as controlled by the specified parameters.
*
* @param out The <code>JspWriter</code> to which we are writing
* @param node The <code>TreeControlNode</code> we are currently
* rendering
* @param level The indentation level of this node in the tree
* @param width Total displayable width of the tree
* @param last Is this the last node in a list?
*
* @exception IOException if an input/output error occurs
*/
protected void render(JspWriter out, TreeControlNode node,
int level, int width, boolean last)
throws IOException {
HttpServletResponse response =
(HttpServletResponse) pageContext.getResponse();
// if the node is root node and the label value is
// null, then do not render root node in the tree.
if ("ROOT-NODE".equalsIgnoreCase(node.getName()) &&
(node.getLabel() == null)) {
// Render the children of this node
TreeControlNode children[] = node.findChildren();
int lastIndex = children.length - 1;
int newLevel = level + 1;
for (int i = 0; i < children.length; i++) {
render(out, children[i], newLevel, width, i == lastIndex);
}
return;
}
// Render the beginning of this node
out.println(" <tr valign=\"middle\">");
// Create the appropriate number of indents
for (int i = 0; i < level; i++) {
int levels = level - i;
TreeControlNode parent = node;
for (int j = 1; j <= levels; j++)
parent = parent.getParent();
if (parent.isLast())
out.print(" <td></td>");
else {
out.print(" <td><img src=\"");
out.print(images);
out.print("/");
out.print(IMAGE_LINE_VERTICAL);
out.print("\" alt=\"\" border=\"0\"></td>");
}
out.println();
}
// Render the tree state image for this node
// HACK to take into account special characters like = and &
// in the node name, could remove this code if encode URL
// and later request.getParameter() could deal with = and &
// character in parameter values.
String encodedNodeName = URLEncoder.encode(node.getName());
String action = replace(getAction(), "${name}", encodedNodeName);
String updateTreeAction =
replace(getAction(), "tree=${name}", "select=" + encodedNodeName);
updateTreeAction =
((HttpServletResponse) pageContext.getResponse()).
encodeURL(updateTreeAction);
out.print(" <td>");
if ((action != null) && !node.isLeaf()) {
out.print("<a href=\"");
out.print(response.encodeURL(action));
out.print("\">");
}
out.print("<img src=\"");
out.print(images);
out.print("/");
if (node.isLeaf()) {
if (node.isLast())
out.print(IMAGE_LINE_LAST);
else
out.print(IMAGE_LINE_MIDDLE);
out.print("\" alt=\"");
} else if (node.isExpanded()) {
if (node.isLast())
out.print(IMAGE_HANDLE_DOWN_LAST);
else
out.print(IMAGE_HANDLE_DOWN_MIDDLE);
out.print("\" alt=\"close node");
} else {
if (node.isLast())
out.print(IMAGE_HANDLE_RIGHT_LAST);
else
out.print(IMAGE_HANDLE_RIGHT_MIDDLE);
out.print("\" alt=\"expand node");
}
out.print("\" border=\"0\">");
if ((action != null) && !node.isLeaf())
out.print("</a>");
out.println("</td>");
// Calculate the hyperlink for this node (if any)
String hyperlink = null;
if (node.getAction() != null)
hyperlink = ((HttpServletResponse) pageContext.getResponse()).
encodeURL(node.getAction());
// Render the icon for this node (if any)
out.print(" <td colspan=\"");
out.print(width - level + 1);
out.print("\">");
if (node.getIcon() != null) {
if (hyperlink != null) {
out.print("<a href=\"");
out.print(hyperlink);
out.print("\"");
String target = node.getTarget();
if(target != null) {
out.print(" target=\"");
out.print(target);
out.print("\"");
}
// to refresh the tree in the same 'self' frame
out.print(" onclick=\"");
out.print("self.location.href='" + updateTreeAction + "'");
out.print("\"");
out.print(">");
}
out.print("<img src=\"");
out.print(images);
out.print("/");
out.print(node.getIcon());
out.print("\" alt=\"");
out.print("\" border=\"0\">");
if (hyperlink != null)
out.print("</a>");
}
// Render the label for this node (if any)
if (node.getLabel() != null) {
String labelStyle = null;
if (node.isSelected() && (styleSelected != null))
labelStyle = styleSelected;
else if (!node.isSelected() && (styleUnselected != null))
labelStyle = styleUnselected;
if (hyperlink != null) {
// Note the leading space so that the text has some space
// between it and any preceding images
out.print(" <a href=\"");
out.print(hyperlink);
out.print("\"");
String target = node.getTarget();
if(target != null) {
out.print(" target=\"");
out.print(target);
out.print("\"");
}
if (labelStyle != null) {
out.print(" class=\"");
out.print(labelStyle);
out.print("\"");
}
// to refresh the tree in the same 'self' frame
out.print(" onclick=\"");
out.print("self.location.href='" + updateTreeAction + "'");
out.print("\"");
out.print(">");
} else if (labelStyle != null) {
out.print("<span class=\"");
out.print(labelStyle);
out.print("\">");
}
out.print(node.getLabel());
if (hyperlink != null)
out.print("</a>");
else if (labelStyle != null)
out.print("</span>");
}
out.println("</td>");
// Render the end of this node
out.println(" </tr>");
// Render the children of this node
if (node.isExpanded()) {
TreeControlNode children[] = node.findChildren();
int lastIndex = children.length - 1;
int newLevel = level + 1;
for (int i = 0; i < children.length; i++) {
render(out, children[i], newLevel, width, i == lastIndex);
}
}
}
/**
* Replace any occurrence of the specified placeholder in the specified
* template string with the specified replacement value.
*
* @param template Pattern string possibly containing the placeholder
* @param placeholder Placeholder expression to be replaced
* @param value Replacement value for the placeholder
*/
protected String replace(String template, String placeholder,
String value) {
if (template == null)
return (null);
if ((placeholder == null) || (value == null))
return (template);
while (true) {
int index = template.indexOf(placeholder);
if (index < 0)
break;
StringBuffer temp = new StringBuffer(template.substring(0, index));
temp.append(value);
temp.append(template.substring(index + placeholder.length()));
template = temp.toString();
}
return (template);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -