for (IModule child : children) {
String childUri = null;
if (webModule != null) {
childUri = webModule.getURI(child);
}
IJ2EEModule childModule = (IJ2EEModule) child.loadAdapter(IJ2EEModule.class, monitor);
boolean isBinary = false;
if (childModule != null) {
isBinary = childModule.isBinary();
}
if (isBinary) {
// binaries are copied to the destination
// directory
if (childUri == null) {