/* * See the NOTICE file distributed with this work for additional * information regarding copyright ownership. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.xwiki.skinx.internal; import javax.inject.Named; import javax.inject.Singleton; import org.xwiki.component.annotation.Component; import com.xpn.xwiki.plugin.skinx.JsSkinExtensionPlugin; /** * Initialize javascript extension class. * * @version $Id: 278aabd1555aa415f91b567cc758ddfe30fc9c04 $ * @since 7.3M1 */ @Component @Named(JsSkinExtensionPlugin.JSX_CLASS_NAME) @Singleton public class JavascriptExtensionDocumentInitializer extends AbstractSkinExtensionDocumentInitializer { /** * Default constructor. */ public JavascriptExtensionDocumentInitializer() { super(JsSkinExtensionPlugin.JSX_CLASS_REFERENCE); } }