aboutsummaryrefslogtreecommitdiffstats
path: root/src/graphui/classes/com/jogamp/graph/ui/Shape.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/graphui/classes/com/jogamp/graph/ui/Shape.java')
-rw-r--r--src/graphui/classes/com/jogamp/graph/ui/Shape.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/graphui/classes/com/jogamp/graph/ui/Shape.java b/src/graphui/classes/com/jogamp/graph/ui/Shape.java
index 7f218fcbe..f5b5fd131 100644
--- a/src/graphui/classes/com/jogamp/graph/ui/Shape.java
+++ b/src/graphui/classes/com/jogamp/graph/ui/Shape.java
@@ -216,8 +216,8 @@ public abstract class Shape {
/** Return the optional symbolic name for this shape. */
public final String getName() { return this.name; }
- /** Returns true if this shape denotes a container, e.g. {@link Group}, otherwise false. */
- public boolean isContainer() { return false; }
+ /** Returns true if this shape denotes a {@link Group}, otherwise false. */
+ public boolean isGroup() { return false; }
/** Returns true if this shape is visible, otherwise false. */
public final boolean isVisible() { return isIO(IO_VISIBLE); }