1 ///////////////////////////////////////////////////////////////////////////////////////////////
2 // checkstyle: Checks Java source code and other text files for adherence to a set of rules.
3 // Copyright (C) 2001-2026 the original author or authors.
4 //
5 // This library is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU Lesser General Public
7 // License as published by the Free Software Foundation; either
8 // version 2.1 of the License, or (at your option) any later version.
9 //
10 // This library is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 // Lesser General Public License for more details.
14 //
15 // You should have received a copy of the GNU Lesser General Public
16 // License along with this library; if not, write to the Free Software
17 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 ///////////////////////////////////////////////////////////////////////////////////////////////
19
20 package com.puppycrawl.tools.checkstyle.checks.whitespace;
21
22 import com.puppycrawl.tools.checkstyle.api.DetailAST;
23 import com.puppycrawl.tools.checkstyle.api.TokenTypes;
24
25 /**
26 * <div>
27 * Checks the policy on the padding of parentheses for typecasts. That is, whether a space
28 * is required after a left parenthesis and before a right parenthesis, or such
29 * spaces are forbidden.
30 * </div>
31 *
32 * @since 3.2
33 */
34 public class TypecastParenPadCheck extends AbstractParenPadCheck {
35
36 /**
37 * Creates a new {@code TypecastParenPadCheck} instance.
38 */
39 public TypecastParenPadCheck() {
40 // no code by default
41 }
42
43 @Override
44 public int[] getRequiredTokens() {
45 return new int[] {TokenTypes.RPAREN, TokenTypes.TYPECAST};
46 }
47
48 @Override
49 public int[] getDefaultTokens() {
50 return getRequiredTokens();
51 }
52
53 @Override
54 public int[] getAcceptableTokens() {
55 return getRequiredTokens();
56 }
57
58 @Override
59 public void visitToken(DetailAST ast) {
60 // Strange logic in this method to guard against checking RPAREN tokens
61 // that are not associated with a TYPECAST token.
62 if (ast.getType() == TokenTypes.TYPECAST) {
63 processLeft(ast);
64 }
65 else if (ast.getParent().getType() == TokenTypes.TYPECAST
66 && ast.getParent().findFirstToken(TokenTypes.RPAREN) == ast) {
67 processRight(ast);
68 }
69 }
70
71 }