blob: f20b5bcd80bfbb79665f034e8f9e694d999b9c8a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2007 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jst.jee.archive;
import java.io.IOException;
import java.util.List;
public abstract class AbstractArchiveSaveAdapter extends AbstractArchiveAdapter implements IArchiveSaveAdapter {
public void close() throws IOException {
}
public void finish() throws IOException {
}
public void save() throws ArchiveSaveFailureException {
try {
List files = getArchive().getArchiveResources();
IArchiveResource file = null;
for (int i = 0; i < files.size(); i++) {
file = (IArchiveResource) files.get(i);
if (shouldSave(file)) {
save(file);
}
}
} finally {
try {
finish();
} catch (IOException e) {
throw new ArchiveSaveFailureException(e);
}
}
}
protected abstract void save(IArchiveResource file) throws ArchiveSaveFailureException;
protected boolean shouldSave(IArchiveResource file) {
return true;
}
}