Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/jpa
diff options
context:
space:
mode:
authorpfullbright2008-11-10 16:41:28 +0000
committerpfullbright2008-11-10 16:41:28 +0000
commit2e90e05b8bfabcc7d5700bf616e89b440056992a (patch)
tree555d187b088cf5904a133e6be4c624599cc5123b /jpa
parent3dbbbe3b71838d7b064171520a99b92d9b8339ee (diff)
downloadwebtools.dali-2e90e05b8bfabcc7d5700bf616e89b440056992a.tar.gz
webtools.dali-2e90e05b8bfabcc7d5700bf616e89b440056992a.tar.xz
webtools.dali-2e90e05b8bfabcc7d5700bf616e89b440056992a.zip
exposed methods for overriding
Diffstat (limited to 'jpa')
-rw-r--r--jpa/plugins/org.eclipse.jpt.ui/src/org/eclipse/jpt/ui/internal/platform/generic/GenericNavigatorItemContentProviderFactory.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.ui/src/org/eclipse/jpt/ui/internal/platform/generic/GenericNavigatorItemContentProviderFactory.java b/jpa/plugins/org.eclipse.jpt.ui/src/org/eclipse/jpt/ui/internal/platform/generic/GenericNavigatorItemContentProviderFactory.java
index 35cffe8649..fad3e06d2a 100644
--- a/jpa/plugins/org.eclipse.jpt.ui/src/org/eclipse/jpt/ui/internal/platform/generic/GenericNavigatorItemContentProviderFactory.java
+++ b/jpa/plugins/org.eclipse.jpt.ui/src/org/eclipse/jpt/ui/internal/platform/generic/GenericNavigatorItemContentProviderFactory.java
@@ -99,7 +99,7 @@ public class GenericNavigatorItemContentProviderFactory
return new CompositeListValueModel<ListValueModel<? extends JpaContextNode>, JpaContextNode>(list);
}
- private ListValueModel<JpaContextNode> buildSpecifiedOrmXmlLvm() {
+ protected ListValueModel<JpaContextNode> buildSpecifiedOrmXmlLvm() {
return new CollectionListValueModelAdapter<JpaContextNode>(
new FilteringCollectionValueModel<MappingFile>(
new ListCollectionValueModelAdapter<MappingFile>(
@@ -134,7 +134,7 @@ public class GenericNavigatorItemContentProviderFactory
});
}
- private ListValueModel<MappingFile> buildImpliedMappingFileLvm() {
+ protected ListValueModel<MappingFile> buildImpliedMappingFileLvm() {
return new PropertyListValueModelAdapter<MappingFile>(
new PropertyAspectAdapter<MappingFileRef, MappingFile>(
new PropertyAspectAdapter<PersistenceUnit, MappingFileRef>(
@@ -154,7 +154,7 @@ public class GenericNavigatorItemContentProviderFactory
);
}
- private ListValueModel<JpaContextNode> buildPersistentTypeLvm() {
+ protected ListValueModel<JpaContextNode> buildPersistentTypeLvm() {
return new CollectionListValueModelAdapter<JpaContextNode>(
new FilteringCollectionValueModel<PersistentType>(
new ListCollectionValueModelAdapter<PersistentType>(
@@ -177,14 +177,14 @@ public class GenericNavigatorItemContentProviderFactory
});
}
- private ListValueModel<ClassRef> buildClassRefLvm() {
+ protected ListValueModel<ClassRef> buildClassRefLvm() {
ArrayList<ListValueModel<ClassRef>> holders = new ArrayList<ListValueModel<ClassRef>>(2);
holders.add(buildSpecifiedClassRefLvm());
holders.add(buildImpliedClassRefLvm());
return new CompositeListValueModel<ListValueModel<ClassRef>, ClassRef>(holders);
}
- private ListValueModel<ClassRef> buildSpecifiedClassRefLvm() {
+ protected ListValueModel<ClassRef> buildSpecifiedClassRefLvm() {
return new ListAspectAdapter<PersistenceUnit, ClassRef>(
PersistenceUnit.SPECIFIED_CLASS_REFS_LIST, model()) {
@Override
@@ -198,7 +198,7 @@ public class GenericNavigatorItemContentProviderFactory
};
}
- private ListValueModel<ClassRef> buildImpliedClassRefLvm() {
+ protected ListValueModel<ClassRef> buildImpliedClassRefLvm() {
return new ListAspectAdapter<PersistenceUnit, ClassRef>(
PersistenceUnit.IMPLIED_CLASS_REFS_LIST, model()) {
@Override

Back to the top