blob: b95545658cdccfca0431cb45610b0ced3451c456 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
package NET.worlds.scape;
import NET.worlds.network.URL;
import java.awt.Component;
import java.awt.Point;
class DropInfo {
public URL url;
public String propertyName;
public Component comp;
public Point location;
DropInfo(URL url, String propertyName, Component comp, Point location) {
this.url = url;
this.propertyName = propertyName;
this.comp = comp;
this.location = location;
}
}
|