View | Details | Raw Unified | Return to bug 265947
Collapse All | Expand All

(-)Eclipse SWT Browser/common/org/eclipse/swt/browser/ProgressEvent.java (-3 / +3 lines)
Lines 31-39 Link Here
31
	
31
	
32
	static final long serialVersionUID = 3977018427045393972L;
32
	static final long serialVersionUID = 3977018427045393972L;
33
33
34
ProgressEvent(Widget w) {
34
	public ProgressEvent(Widget w) {
35
	super(w);
35
		super(w);
36
}
36
	}
37
37
38
/**
38
/**
39
 * Returns a string containing a concise, human-readable
39
 * Returns a string containing a concise, human-readable
(-)Eclipse SWT Browser/common/org/eclipse/swt/browser/StatusTextEvent.java (-3 / +3 lines)
Lines 29-37 Link Here
29
	
29
	
30
	static final long serialVersionUID = 3258407348371600439L;
30
	static final long serialVersionUID = 3258407348371600439L;
31
31
32
StatusTextEvent(Widget w) {
32
	public StatusTextEvent(Widget w) {
33
	super(w);
33
		super(w);
34
}
34
	}
35
35
36
/**
36
/**
37
 * Returns a string containing a concise, human-readable
37
 * Returns a string containing a concise, human-readable
(-)Eclipse SWT Browser/common/org/eclipse/swt/browser/TitleEvent.java (-3 / +3 lines)
Lines 28-36 Link Here
28
	
28
	
29
	static final long serialVersionUID = 4121132532906340919L;
29
	static final long serialVersionUID = 4121132532906340919L;
30
30
31
TitleEvent(Widget w) {
31
	public TitleEvent(Widget w) {
32
	super(w);
32
		super(w);
33
}
33
	}
34
34
35
/**
35
/**
36
 * Returns a string containing a concise, human-readable
36
 * Returns a string containing a concise, human-readable
(-)Eclipse SWT Browser/common/org/eclipse/swt/browser/WindowEvent.java (-3 / +3 lines)
Lines 185-193 Link Here
185
	
185
	
186
	static final long serialVersionUID = 3617851997387174969L;
186
	static final long serialVersionUID = 3617851997387174969L;
187
	
187
	
188
WindowEvent(Widget w) {
188
	public WindowEvent(Widget w) {
189
	super(w);
189
		super(w);
190
}
190
	}
191
191
192
/**
192
/**
193
 * Returns a string containing a concise, human-readable
193
 * Returns a string containing a concise, human-readable
(-)Eclipse SWT Browser/common/org/eclipse/swt/browser/LocationEvent.java (-3 / +3 lines)
Lines 43-51 Link Here
43
43
44
	static final long serialVersionUID = 3906644198244299574L;
44
	static final long serialVersionUID = 3906644198244299574L;
45
	
45
	
46
LocationEvent(Widget w) {
46
	public LocationEvent(Widget w) {
47
	super(w);
47
		super(w);
48
}
48
	}
49
49
50
50

Return to bug 265947