blob: 15dbf7ca3285883f9f87d2cb5f6271ade581023f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2002, 2005 Object Factory Inc.
* 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:
* Object Factory Inc. - Initial implementation
*******************************************************************************/
package org.eclipse.ant.internal.ui.dtd.util;
/**
* A FactoryObject must implement a simple linked list.
*
* @author Bob Foster
*/
public interface FactoryObject {
FactoryObject next();
void next(FactoryObject obj);
}