FluentLenium/FluentLenium

View on GitHub
fluentlenium-core/src/main/java/io/fluentlenium/core/dom/Dom.java

Summary

Maintainability
A
0 mins
Test Coverage

Name 'io.fluentlenium.core.dom' must match pattern '^org.[a-z]+(.[a-zA-Z_][a-zA-Z0-9_]*)*$'.
Open

package io.fluentlenium.core.dom;

Checks that package names conform to a specified pattern.

The default value of format for module PackageName has beenchosen to match the requirements in the JavaLanguage specification and the Sun coding conventions. Howeverboth underscores and uppercase letters are rather uncommon, so mostconfigurations should probably assign value ^[a-z]+(\.[a-z][a-z0-9]*)*$ toformat for module PackageName.

This documentation is written and maintained by the Checkstyle community and is covered under the same license as the Checkstyle project.

Avoid short class names like Dom
Open

public class Dom {
    private final WebElement webElement;
    private final ComponentInstantiator instantiator;

    /**

ShortClassName

Since: PMD 5.0

Priority: Medium Low

Categories: Style

Remediation Points: 50000

Short Classnames with fewer than e.g. five characters are not recommended.

Example:

public class Foo {
}

There are no issues that match your filters.

Category
Status