Cette page n'est pas encore disponible en français, sa traduction est en cours.
Si vous avez des questions ou des retours sur notre projet de traduction actuel, n'hésitez pas à nous contacter.

Metadata

ID: java-code-style/avoid-protected-in-final-class

Language: Java

Severity: Notice

Category: Code Style

Description

Avoid setting fields as protected inside a final class as they cannot be subclassed.

If flagged, review your class and its usage. Consider adjusting your modifiers and their access.

Non-Compliant Code Examples

public final class Foo {
    private int x;
    protected int y; // visibility should be reviewed

    protected int getY() { // visibility should be reviewed
        return y;
    };
    Foo() {}
}

Compliant Code Examples

public final class Foo {
    private int x;
    public int y;

    public int getY() {
        return y;
    }; 
    Foo() {}
}