blob: cc63d84588f5bb31dd11c2e24463f6db1a4a4f1c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.update.internal.core;
import java.io.*;
/**
* Called when we want the model to persist as XML
*/
public interface IWritable {
public static final int INDENT = 3;
void write(int indent, PrintWriter w);
}