Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkchong2009-01-20 21:09:08 +0000
committerkchong2009-01-20 21:09:08 +0000
commitb919f2aae9139630d929f11e1467a7549440d9b0 (patch)
tree005d269b9d07daa566dabd706dde19708c88387d /bundles/org.eclipse.wst.xsd.ui/src-adt-xsd/org/eclipse
parentb07283c6b77668b1ea2108e25dd794802249b67a (diff)
downloadwebtools.sourceediting-b919f2aae9139630d929f11e1467a7549440d9b0.tar.gz
webtools.sourceediting-b919f2aae9139630d929f11e1467a7549440d9b0.tar.xz
webtools.sourceediting-b919f2aae9139630d929f11e1467a7549440d9b0.zip
[251720] [Graphical Editor] Provide better visual cues for abstract types/elements
Diffstat (limited to 'bundles/org.eclipse.wst.xsd.ui/src-adt-xsd/org/eclipse')
-rw-r--r--bundles/org.eclipse.wst.xsd.ui/src-adt-xsd/org/eclipse/wst/xsd/ui/internal/design/editparts/model/SpaceFiller.java8
1 files changed, 7 insertions, 1 deletions
diff --git a/bundles/org.eclipse.wst.xsd.ui/src-adt-xsd/org/eclipse/wst/xsd/ui/internal/design/editparts/model/SpaceFiller.java b/bundles/org.eclipse.wst.xsd.ui/src-adt-xsd/org/eclipse/wst/xsd/ui/internal/design/editparts/model/SpaceFiller.java
index ae847ef035..30ab79a88f 100644
--- a/bundles/org.eclipse.wst.xsd.ui/src-adt-xsd/org/eclipse/wst/xsd/ui/internal/design/editparts/model/SpaceFiller.java
+++ b/bundles/org.eclipse.wst.xsd.ui/src-adt-xsd/org/eclipse/wst/xsd/ui/internal/design/editparts/model/SpaceFiller.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2001, 2006 IBM Corporation and others.
+ * Copyright (c) 2001, 2009 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -158,6 +158,12 @@ public class SpaceFiller implements IField
// TODO Auto-generated method stub
return false;
}
+
+ public boolean isAbstract()
+ {
+ // TODO Auto-generated method stub
+ return false;
+ }
}

Back to the top