/*
* Copyright (C) The DNA Group. All rights reserved.
*
* This software is published under the terms of the DNA
* Software License version 1.1, a copy of which has been included
* with this distribution in the LICENSE.txt file.
*/
package org.codehaus.dna.impl;
import org.codehaus.dna.Configuration;
import org.codehaus.dna.impl.SAXConfigurationSerializer;
import org.xml.sax.helpers.AttributesImpl;
class MockSAXConfigurationSerializer
extends SAXConfigurationSerializer
{
static final AttributesImpl ATTRIBUTES = new AttributesImpl();
AttributesImpl serializeAttributes( Configuration configuration )
{
return ATTRIBUTES;
}
}
|