Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaren Butzke2012-12-20 22:21:26 +0000
committerKaren Butzke2012-12-20 22:21:26 +0000
commitee3ac620a83557ec8aa2526c1630d5373d177dad (patch)
treede9dd5383241bc8e6da7650085a9083a0c0e099d
parentb4fba78f3bd76fe4a8c940e7f55dc0889a8dd2cc (diff)
downloadwebtools.dali-ee3ac620a83557ec8aa2526c1630d5373d177dad.tar.gz
webtools.dali-ee3ac620a83557ec8aa2526c1630d5373d177dad.tar.xz
webtools.dali-ee3ac620a83557ec8aa2526c1630d5373d177dad.zip
commenting some of the api on JpaPlatformUi
-rw-r--r--jpa/plugins/org.eclipse.jpt.jpa.ui/src/org/eclipse/jpt/jpa/ui/JpaPlatformUi.java24
1 files changed, 24 insertions, 0 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.jpa.ui/src/org/eclipse/jpt/jpa/ui/JpaPlatformUi.java b/jpa/plugins/org.eclipse.jpt.jpa.ui/src/org/eclipse/jpt/jpa/ui/JpaPlatformUi.java
index 7756a4ed81..fb862064fb 100644
--- a/jpa/plugins/org.eclipse.jpt.jpa.ui/src/org/eclipse/jpt/jpa/ui/JpaPlatformUi.java
+++ b/jpa/plugins/org.eclipse.jpt.jpa.ui/src/org/eclipse/jpt/jpa/ui/JpaPlatformUi.java
@@ -99,8 +99,20 @@ public interface JpaPlatformUi {
WidgetFactory widgetFactory,
ResourceManager resourceManager);
+ /**
+ * Return the list of possible type mapping ui definitions
+ * filtered using MappingUiDefinition#isEnabledFor(JpaContextNode).
+ * <p>
+ * @see #getTypeMappingUiDefinitions(JptResourceType)
+ */
Iterable<MappingUiDefinition> getTypeMappingUiDefinitions(PersistentType persistentType);
+ /**
+ * Return the list of all the possible type mapping ui definitions
+ * for the given JptResourceType.
+ * <p>
+ * @see #getTypeMappingUiDefinitions(PersistentType)
+ */
Iterable<MappingUiDefinition> getTypeMappingUiDefinitions(JptResourceType resourceType);
MappingUiDefinition getTypeMappingUiDefinition(JptResourceType resourceType, String mappingKey);
@@ -119,8 +131,20 @@ public interface JpaPlatformUi {
WidgetFactory widgetFactory,
ResourceManager resourceManager);
+ /**
+ * Return the list of possible attribute mapping ui definitions
+ * filtered using MappingUiDefinition#isEnabledFor(JpaContextNode).
+ * <p>
+ * @see #getAttributeMappingUiDefinitions(JptResourceType)
+ */
Iterable<MappingUiDefinition> getAttributeMappingUiDefinitions(ReadOnlyPersistentAttribute persistentAttribute);
+ /**
+ * Return the list of all the possible attribute mapping ui definitions
+ * for the given JptResourceType.
+ * <p>
+ * @see #getAttributeMappingUiDefinitions(ReadOnlyPersistentAttribute)
+ */
Iterable<MappingUiDefinition> getAttributeMappingUiDefinitions(JptResourceType resourceType);
MappingUiDefinition getAttributeMappingUiDefinition(JptResourceType resourceType, String mappingKey);

Back to the top