MockSAXConfigurationSerializer.java :  » Inversion-of-Control » DNA » org » codehaus » dna » impl » Java Open Source

Java Open Source » Inversion of Control » DNA 
DNA » org » codehaus » dna » impl » MockSAXConfigurationSerializer.java
/*
 * 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;
    }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.