- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
// Asynchronously load the DXF.
// While we're doing that, the data can change, so we should guard against it.
new WebappResourceLoader().loadResource(ResourceType.DXF, sDxfName + ".dxf",
new ResourceCallback<List<String>>() {
@Override
public void onSuccess(final List<String> result) {
if (!sDxfName.equals(dxfToLoad)) {
// Too slow, dude.
return;
}
dwinner 04.05.2012 20:17 # 0
someone 05.05.2012 00:33 # 0
lucidfoxGovno 05.05.2012 01:11 # +1