Subversion Repository Public Repository

litesoft

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package org.litesoft.GWT.client.dev.ui.inspection;

public enum SelectionSpecId
{
    /**
     * Match an element with the given name. E.g. "DIV"
     */
    ElementName, 
    
    /**
     * Match an element with the given expando name. "id" and "name" are both used for
     * various purposes. To avoid misuse/collisions we'll need to create a
     * custom name attribute (expando).
     */
    ExpandoName, 
    
    /**
     * Match an element that has an attribute with a given name and value. 
     */
    AttributeValue, 

    /**
     * Match an element with content (innerText) of the given value. May need to
     * strip out   and spaces that are sometimes used for padding.
     */
    ContentValue, 
    
    JQuery;
}

Commits for litesoft/trunk/Java/GWT/Dev/src/org/litesoft/GWT/client/dev/ui/inspection/SelectionSpecId.java

Diff revisions: vs.
Revision Author Commited Message
2 GeorgeS picture GeorgeS Sun 07 Feb, 2010 12:50:58 +0000