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
30
31
package org.litesoft.GWT.client.widgets.sliderbar.client.event;

import com.google.gwt.event.shared.*;

public class BarValueChangedEvent extends GwtEvent<BarValueChangedHandler> {
    public static Type<BarValueChangedHandler> TYPE = new Type<BarValueChangedHandler>();

    int value;

    public BarValueChangedEvent( int position ) {
        this.value = position;
    }

    public int getValue() {
        return value;
    }

    public void setValue( int position ) {
        this.value = position;
    }

    @Override
    public Type<BarValueChangedHandler> getAssociatedType() {
        return TYPE;
    }

    @Override
    protected void dispatch( BarValueChangedHandler handler ) {
        handler.onBarValueChanged( this );
    }
}

Commits for litesoft/trunk/Java/GWT/Client/src/org/litesoft/GWT/client/widgets/sliderbar/client/event/BarValueChangedEvent.java

Diff revisions: vs.
Revision Author Commited Message
948 Diff Diff GeorgeS picture GeorgeS Sat 07 Jun, 2014 23:42:39 +0000

Jusefuls Formatter Updated to New Code Format

917 GeorgeS picture GeorgeS Sun 08 Dec, 2013 20:49:56 +0000

1.7 prep & VersionedStaticContentFilter upgrade to new “/ver” model!