/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * This source file is part of SableVM.                            *
 *                                                                 *
 * See the file "LICENSE" for the copyright information and for    *
 * the terms and conditions for copying, distribution and          *
 * modification of this source file.                               *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

/**
 * @author Patrick Latifi
 */
public class SDeprecatedAttribute extends SAttributeInfo
{
	public SDeprecatedAttribute(int attributeNameIndex, int attributeLength)
	{
	    super(attributeNameIndex, attributeLength);
	}

	public String toString()
	{
		return "\n***Deprecated Attribute***\n" + super.toString();
	}
}
