blob: 3e4930572b6e3631e707ab5509d0c36b806a6140 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.netbeans.modules.editor.structure.api;
import java.util.EventListener;
/**
* An implementation of EventListener allowing to listen o changes of a DocumentElement.
*<br>
* Allows to listen on following changes:
* <ul>
* <li>A child has been added into the element
* <li>A child has been removed into the element
* <li>Children of the element have been reordered
* <li>Text content of the element has changed
* <li>Attributes of the element has changed
* </ul>
*
* @author Marek Fukala
* @version 1.0
* @see DocumentElement
* @see DocumentElementEvent
*/
public interface DocumentElementListener extends EventListener {
//note: there are no events like elementRenamed or elementPositionChanged
//1.if the element is renamed then the parent disposes it and creates a new one.
//2.the Positions objects changes its inner position representation itself.
/** fired when a new child has been added into the element. */
public void elementAdded(DocumentElementEvent e);
/** fired when a child has been removed from the element. */
public void elementRemoved(DocumentElementEvent e);
/** fired when children of the element have been reordered. */
public void childrenReordered(DocumentElementEvent e);
/** fired when the element's text content has been changed. */
public void contentChanged(DocumentElementEvent e);
/** fired when attributes of the element have been changed (removed/added/value changed) */
public void attributesChanged(DocumentElementEvent e);
}