001    /*
002     * Sonar, open source software quality management tool.
003     * Copyright (C) 2008-2012 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 java.util.List;
023    
024    import org.sonar.api.SonarPlugin;
025    import org.sonar.plugins.design.batch.FileTangleIndexDecorator;
026    import org.sonar.plugins.design.batch.MavenDependenciesSensor;
027    import org.sonar.plugins.design.batch.PackageTangleIndexDecorator;
028    import org.sonar.plugins.design.batch.ProjectDsmDecorator;
029    import org.sonar.plugins.design.batch.SuspectLcom4DensityDecorator;
030    import org.sonar.plugins.design.ui.dependencies.DependenciesViewer;
031    import org.sonar.plugins.design.ui.libraries.GwtLibrariesPage;
032    import org.sonar.plugins.design.ui.page.GwtDesignPage;
033    import org.sonar.plugins.design.ui.widgets.ChidamberKemererWidget;
034    import org.sonar.plugins.design.ui.widgets.FileDesignWidget;
035    import org.sonar.plugins.design.ui.widgets.PackageDesignWidget;
036    
037    import com.google.common.collect.Lists;
038    
039    public class DesignPlugin extends SonarPlugin {
040    
041      @SuppressWarnings({"unchecked", "rawtypes"})
042      public List getExtensions() {
043        List extensions = Lists.newArrayList();
044    
045        // Batch
046        extensions.add(MavenDependenciesSensor.class);
047        extensions.add(ProjectDsmDecorator.class);
048        extensions.add(PackageTangleIndexDecorator.class);
049        extensions.add(FileTangleIndexDecorator.class);
050        extensions.add(SuspectLcom4DensityDecorator.class);
051        extensions.add(GwtLibrariesPage.class);
052    
053        // UI
054        extensions.add(GwtDesignPage.class);
055        extensions.add(DependenciesViewer.class);
056        extensions.add(FileDesignWidget.class);
057        extensions.add(PackageDesignWidget.class);
058        extensions.add(ChidamberKemererWidget.class);
059    
060        return extensions;
061      }
062    }