source: trunk/autoquest-jfcmonitor/src/main/java/de/ugoe/cs/autoquest/jfcmonitor/JFCComponentTitleHierachy.java @ 928

Last change on this file since 928 was 928, checked in by fglaser, 12 years ago
  • Title change hierarchy control added
  • JFCNameChangeListener renamed to JFCTitleChangeListener
  • JFCTitleChangeListener now additionaly listens on icon and position changes
  • Property svn:mime-type set to text/plain
File size: 359 bytes
Line 
1package de.ugoe.cs.autoquest.jfcmonitor;
2
3/**
4 * Class that encodes the source hierarchy for {@link JFCComponent} title.
5 * @author Fabian Glaser
6 *
7 */
8public class JFCComponentTitleHierachy {
9        static final int SOURCE_NOT_KNOWN = 10;
10        static final int ACCESSIBLE_NAME = 1;
11        static final int ICON = 2;
12        static final int NAME = 3;
13        static final int POS = 4;
14}
Note: See TracBrowser for help on using the repository browser.