All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.oddjob.arooa.parsing.ArooaAttributes Maven / Gradle / Ivy

There is a newer version: 1.6.0
Show newest version
/*
 * (c) Rob Gordon 2006
 */
package org.oddjob.arooa.parsing;

/**
 * Encapsulate the attributes of an element.
 * 
 * @see ArooaElement
 * 
 * @author rob
 *
 */
public interface ArooaAttributes {

	/**
	 * The attribute value.
	 * 
	 * @param name The name of the attribute.
	 * 
	 * @return The value, or null if it doesn't exist.
	 */
	public String get(String name);
	
	/**
	 * Get all the names of the attributes.
	 * 
	 * @return The attribute names. Never null.
	 */
	public String[] getAttributNames();
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy