001    /*
002     * Sonar, open source software quality management tool.
003     * Copyright (C) 2008-2011 SonarSource
004     * mailto:contact AT sonarsource DOT com
005     *
006     * Sonar is free software; you can redistribute it and/or
007     * modify it under the terms of the GNU Lesser General Public
008     * License as published by the Free Software Foundation; either
009     * version 3 of the License, or (at your option) any later version.
010     *
011     * Sonar is distributed in the hope that it will be useful,
012     * but WITHOUT ANY WARRANTY; without even the implied warranty of
013     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
014     * Lesser General Public License for more details.
015     *
016     * You should have received a copy of the GNU Lesser General Public
017     * License along with Sonar; if not, write to the Free Software
018     * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02
019     */
020    package org.sonar.plugins.design;
021    
022    import com.google.common.collect.Lists;
023    import org.sonar.api.SonarPlugin;
024    import org.sonar.plugins.design.batch.*;
025    import org.sonar.plugins.design.ui.dependencies.GwtDependenciesTab;
026    import org.sonar.plugins.design.ui.libraries.GwtLibrariesPage;
027    import org.sonar.plugins.design.ui.page.GwtDesignPage;
028    import org.sonar.plugins.design.ui.widgets.ChidamberKemererWidget;
029    import org.sonar.plugins.design.ui.widgets.FileDesignWidget;
030    import org.sonar.plugins.design.ui.widgets.PackageDesignWidget;
031    
032    import java.util.List;
033    
034    public class DesignPlugin extends SonarPlugin {
035    
036      public List getExtensions() {
037        List extensions = Lists.newArrayList();
038    
039        // Batch
040        extensions.add(MavenDependenciesSensor.class);
041        extensions.add(ProjectDsmDecorator.class);
042        extensions.add(PackageTangleIndexDecorator.class);
043        extensions.add(FileTangleIndexDecorator.class);
044        extensions.add(SuspectLcom4DensityDecorator.class);
045        extensions.add(GwtLibrariesPage.class);
046    
047        // UI
048        extensions.add(GwtDesignPage.class);
049        extensions.add(GwtDependenciesTab.class);
050        extensions.add(FileDesignWidget.class);
051        extensions.add(PackageDesignWidget.class);
052        extensions.add(ChidamberKemererWidget.class);
053    
054        return extensions;
055      }
056    }