UnaryTree.java (1204:9597425b6b38) UnaryTree.java (1590:1916a2c680d8)
1/*
2 * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Oracle designates this
8 * particular file as subject to the "Classpath" exception as provided

--- 24 unchanged lines hidden (view full) ---

33 * <pre>
34 * <em>operator</em> <em>expression</em>
35 *
36 * <em>expression</em> <em>operator</em>
37 * </pre>
38 *
39 * @since 1.9
40 */
1/*
2 * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Oracle designates this
8 * particular file as subject to the "Classpath" exception as provided

--- 24 unchanged lines hidden (view full) ---

33 * <pre>
34 * <em>operator</em> <em>expression</em>
35 *
36 * <em>expression</em> <em>operator</em>
37 * </pre>
38 *
39 * @since 1.9
40 */
41@jdk.Exported
42public interface UnaryTree extends ExpressionTree {
43 /**
44 * Returns the expression operated by the unary operator.
45 *
46 * @return The expression operated by the unary operator.
47 */
48 ExpressionTree getExpression();
49}
41public interface UnaryTree extends ExpressionTree {
42 /**
43 * Returns the expression operated by the unary operator.
44 *
45 * @return The expression operated by the unary operator.
46 */
47 ExpressionTree getExpression();
48}