LiteralTree.java (1204:9597425b6b38) LiteralTree.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

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

31 *
32 * For example:
33 * <pre>
34 * <em>value</em>
35 * </pre>
36 *
37 * @since 1.9
38 */
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

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

31 *
32 * For example:
33 * <pre>
34 * <em>value</em>
35 * </pre>
36 *
37 * @since 1.9
38 */
39@jdk.Exported
40public interface LiteralTree extends ExpressionTree {
41 /**
42 * Returns the value of this literal.
43 *
44 * @return the value of this literal
45 */
46 Object getValue();
47}
39public interface LiteralTree extends ExpressionTree {
40 /**
41 * Returns the value of this literal.
42 *
43 * @return the value of this literal
44 */
45 Object getValue();
46}