NameIgnoreMechanism mechanism = unit.getAttachment(NameIgnoreMechanism.class);
if (mechanism != null)
{
VirtualFile root = unit.getRoot();
String path = AbstractStructureDeployer.getRelativePath(root, file);
return mechanism.ignorePath(unit, path);
}
return false;
}
protected T parse(DeploymentUnit unit, String name, T root) throws Exception