/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * 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 SSyntheticAttribute extends SAttributeInfo
{
    public SSyntheticAttribute(int attributeNameIndex, int attributeLength)
    {
	super(attributeNameIndex, attributeLength);
    }

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