Browse Source

Improve CollapseEvent and ExpandEvent javadocs

tags/8.1.0.alpha8
Aleksi Hietanen 7 years ago
parent
commit
760959a5d2

+ 4
- 3
server/src/main/java/com/vaadin/event/CollapseEvent.java View File

import com.vaadin.util.ReflectTools; import com.vaadin.util.ReflectTools;


/** /**
* An event that is fired when an item is collapsed. Note that expanded subtrees
* of the collapsed item will not trigger collapse events.
* An event that is fired when an item is collapsed in a listing component that
* displays hierarchical data. Note that expanded subtrees of the collapsed item
* will not trigger collapse events.
* *
* @author Vaadin Ltd * @author Vaadin Ltd
* @since 8.1 * @since 8.1
* Construct a collapse event. * Construct a collapse event.
* *
* @param source * @param source
* the hierarchical this event originated from
* the hierarchical component this event originated from
* @param collapsedItem * @param collapsedItem
* the item that was collapsed * the item that was collapsed
* @param userOriginated * @param userOriginated

+ 2
- 1
server/src/main/java/com/vaadin/event/ExpandEvent.java View File

import com.vaadin.util.ReflectTools; import com.vaadin.util.ReflectTools;


/** /**
* An event that is fired when an item is expanded.
* An event that is fired when an item is expanded in a listing component that
* displays hierarchical data.
* *
* @author Vaadin Ltd * @author Vaadin Ltd
* @since 8.1 * @since 8.1

Loading…
Cancel
Save