JavaScript.java :  » Scripting » javascript-plugin-for-sonar » com » googlecode » sonar » plugins » javascript » Java Open Source

Java Open Source » Scripting » javascript plugin for sonar 
javascript plugin for sonar » com » googlecode » sonar » plugins » javascript » JavaScript.java
/**
 * Sonar JavaScript Plugin
 * Extension for Sonar, open source software quality management tool.
 * Copyright (C) 2011 Eriks Nukis
 * mailto: eriks.nukis@gmail.com
 *
 * Sonar JavaScript Plugin 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 3 of the License, or (at your option) any later version.
 *
 * Sonar JavaScript Plugin 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 Sonar JavaScript Plugin; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02
 */

package com.googlecode.sonar.plugins.javascript;

import org.apache.commons.configuration.Configuration;
import org.apache.commons.lang.StringUtils;
import org.sonar.api.resources.AbstractLanguage;

public class JavaScript extends AbstractLanguage {

  private Configuration configuration;
  public static final String KEY = "js";
  public static final String DEFAULT_PACKAGE_NAME = "[default]";
  public static JavaScript INSTANCE;

  public JavaScript(Configuration configuration) {
    super(KEY, "JavaScript");
    this.configuration = configuration;

    INSTANCE = this;
  }

  public String[] getFileSuffixes() {
    String[] suffixes = configuration.getStringArray(JavaScriptPlugin.FILE_SUFFIXES_KEY);
    if (suffixes == null || suffixes.length == 0) {
      suffixes = StringUtils.split(JavaScriptPlugin.FILE_SUFFIXES_DEFVALUE, ",");
    }
    return suffixes;
  }

}
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.