blob: 7c57c95849e339bf0ef0ac68fc8c314113661df2 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2002, 2003 Object Factory Inc.
* 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:
* Object Factory Inc. - Initial implementation
*******************************************************************************/
package org.eclipse.ant.ui.internal.dtd;
/**
* Schema atom interface.
* @author Bob Foster
*/
public interface IAtom {
public static final int ELEMENT = 0;
public static final int ATTRIBUTE = 1;
/**
* Return the atom name.
*/
public String getName();
/**
* Return the atom name.
*/
public String toString();
}