⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 treemodelevent.java

📁 一个使用struts+hibernate+spring开发的完的网站源代码。
💻 JAVA
字号:
/* * Copyright 2004 The Apache Software Foundation. *  * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at *  *      http://www.apache.org/licenses/LICENSE-2.0 *  * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */package org.apache.myfaces.custom.tree.model;/** * @author <a href="mailto:oliver@rossmueller.com">Oliver Rossmueller</a> * @version $Revision: 1.3 $ $Date: 2004/10/13 11:50:58 $ *          $Log: TreeModelEvent.java,v $ *          Revision 1.3  2004/10/13 11:50:58  matze *          renamed packages to org.apache * *          Revision 1.2  2004/07/01 21:53:04  mwessendorf *          ASF switch * *          Revision 1.1  2004/04/22 10:20:24  manolito *          tree component * */public class TreeModelEvent{    private Object source;    private TreePath path;    private int[] childIndices;    private Object[] children;    /**     * Used to create an event when nodes have been changed, inserted, or     * removed, identifying the path to the parent of the modified items as     * an array of Objects. All of the modified objects are siblings which are     * direct descendents (not grandchildren) of the specified parent.     * The positions at which the inserts, deletes, or changes occurred are     * specified by an array of <code>int</code>. The indexes in that array     * must be in order, from lowest to highest.     *     * @param source       the Object responsible for generating the event     * @param path         an array of Object identifying the path to the parent of the modified item(s)     * @param childIndices array that specifies the     *                     index values of the removed items. The indices must be in sorted order, from lowest to highest     * @param children     an array containing the inserted, removed, or changed objects     */    public TreeModelEvent(Object source, Object[] path, int[] childIndices, Object[] children)    {        this(source, new TreePath(path), childIndices, children);    }    /**     * Used to create an event when nodes have been changed, inserted, or     * removed, identifying the path to the parent of the modified items as     * a TreePath object.     *     * @param source       the Object responsible for generating the event     * @param path         a TreePath object that identifies the path to the parent of the modified item(s)     * @param childIndices array that specifies the index values of the modified items     * @param children     an array containing the inserted, removed, or changed objects     * @see #TreeModelEvent(Object,Object[],int[],Object[])     */    public TreeModelEvent(Object source, TreePath path, int[] childIndices, Object[] children)    {        this.source = source;        this.path = path;        this.childIndices = childIndices;        this.children = children;    }    /**     * Used to create an event when nodes have been changed, inserted, or     * removed, identifying the path to the parent of the modified items as     * a TreePath object.     *     * @param source the Object responsible for generating the event     * @param path   an array of Object identifying the path to the parent of the modified item(s)     */    public TreeModelEvent(Object source, Object[] path)    {        this(source, new TreePath(path));    }    /**     * Used to create an event when nodes have been changed, inserted, or     * removed, identifying the path to the parent of the modified items as     * a TreePath object.     *     * @param source the Object responsible for generating the event     * @param path   a TreePath object that identifies the path to the parent of the modified item(s)     */    public TreeModelEvent(Object source, TreePath path)    {        this.source = source;        this.path = path;        this.childIndices = new int[0];    }    /**     * Answer the source of this event     *     * @return the source of this event     */    public Object getSource()    {        return source;    }    /**     * For all events, except treeStructureChanged,     * returns the parent of the changed nodes.     * For treeStructureChanged events, returns the ancestor of the     * structure that has changed. This and     * <code>getChildIndices</code> are used to get a list of the effected     * nodes.     * <p/>     * The one exception to this is a treeNodesChanged event that is to     * identify the root, in which case this will return the root     * and <code>getChildIndices</code> will return null.     *     * @return the TreePath used in identifying the changed nodes.     */    public TreePath getTreePath()    {        return path;    }    /**     * Return the objects that are children of the node identified by     * the path of this event at the locations specified by     * <code>getChildIndices</code>. If this is a removal event the     * returned objects are no longer children of the parent node.     *     * @return an array of Object containing the children specified by     *         the event     */    public Object[] getChildren()    {        if (children != null)        {            Object[] answer = new Object[children.length];            System.arraycopy(children, 0, answer, 0, children.length);            return answer;        }        return null;    }    /**     * Returns the values of the child indexes. If this is a removal event     * the indexes point to locations in the initial list where items     * were removed. If it is an insert, the indices point to locations     * in the final list where the items were added. For node changes,     * the indices point to the locations of the modified nodes.     *     * @return an array containing index locations for the children specified by the event     */    public int[] getChildIndices()    {        if (childIndices != null)        {            int[] answer = new int[childIndices.length];            System.arraycopy(childIndices, 0, answer, 0, childIndices.length);            return answer;        }        return null;    }    /**     * Returns a string that displays and identifies this object's     * properties.     *     * @return a String representation of this object     */    public String toString()    {        StringBuffer buffer = new StringBuffer();        buffer.append(super.toString());        if (path != null)        {            buffer.append(" path " + path);        }        if (childIndices != null)        {            buffer.append(" indices [ ");            for (int i = 0; i < childIndices.length; i++)            {                buffer.append(Integer.toString(childIndices[i]) + " ");            }            buffer.append("]");        }        if (children != null)        {            buffer.append(" children [ ");            for (int i = 0; i < children.length; i++)            {                buffer.append(children[i] + " ");            }            buffer.append("]");        }        return buffer.toString();    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -