update copyright and javadoc

This commit is contained in:
bjiang
2016-08-12 17:12:12 -04:00
parent 0164feffcc
commit c093edf459
3 changed files with 12 additions and 6 deletions

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
* *
* Copyright (c) 2015 Bianca Jiang. All Rights Reserved. * © Copyright IBM Corporation 2016.
*/ */
package org.owasp.dependencycheck.analyzer; package org.owasp.dependencycheck.analyzer;
@@ -34,9 +34,12 @@ import org.owasp.dependencycheck.utils.FileFilterBuilder;
import org.owasp.dependencycheck.utils.Settings; import org.owasp.dependencycheck.utils.Settings;
/** /**
* @author Bianca Xue Jiang * This analyzer is used to analyze SWIFT and Objective-C packages by collecting
* information from .podspec files. CocoaPods dependency manager see https://cocoapods.org/.
* *
* @author Bianca Jiang (https://twitter.com/biancajiang)
*/ */
@Experimental
public class CocoaPodsAnalyzer extends AbstractFileTypeAnalyzer { public class CocoaPodsAnalyzer extends AbstractFileTypeAnalyzer {
/** /**

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
* *
* Copyright (c) 2016 Bianca Jiang. All Rights Reserved. * © Copyright IBM Corporation 2016.
*/ */
package org.owasp.dependencycheck.analyzer; package org.owasp.dependencycheck.analyzer;
@@ -43,7 +43,7 @@ import org.owasp.dependencycheck.dependency.Dependency;
* {@link RubyGemspecAnalyzer}, so it will enabled/disabled with * {@link RubyGemspecAnalyzer}, so it will enabled/disabled with
* {@link RubyGemspecAnalyzer}. * {@link RubyGemspecAnalyzer}.
* *
* @author Bianca Jiang (biancajiang@gmail.com) * @author Bianca Jiang (https://twitter.com/biancajiang)
*/ */
@Experimental @Experimental
public class RubyBundlerAnalyzer extends RubyGemspecAnalyzer { public class RubyBundlerAnalyzer extends RubyGemspecAnalyzer {

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
* *
* Copyright (c) 2015 Bianca Jiang. All Rights Reserved. * © Copyright IBM Corporation 2016.
*/ */
package org.owasp.dependencycheck.analyzer; package org.owasp.dependencycheck.analyzer;
@@ -34,9 +34,12 @@ import org.owasp.dependencycheck.utils.FileFilterBuilder;
import org.owasp.dependencycheck.utils.Settings; import org.owasp.dependencycheck.utils.Settings;
/** /**
* @author Bianca Xue Jiang * This analyzer is used to analyze the SWIFT Package Manager (https://swift.org/package-manager/).
* It collects information about a package from Package.swift files.
* *
* @author Bianca Jiang (https://twitter.com/biancajiang)
*/ */
@Experimental
public class SwiftPackageManagerAnalyzer extends AbstractFileTypeAnalyzer { public class SwiftPackageManagerAnalyzer extends AbstractFileTypeAnalyzer {
/** /**