Skip to main content
summaryrefslogtreecommitdiffstats
blob: 293bbc811389a71258cff6fcc503f68e402a2b45 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/*******************************************************************************
 * Copyright (c) 2008, 2013 Oracle. 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 http://www.eclipse.org/legal/epl-v10.html.
 * 
 * Contributors:
 *     Oracle - initial API and implementation
 *******************************************************************************/
package org.eclipse.jpt.jpa.ui.internal.platform.generic;

import org.eclipse.jpt.common.ui.internal.jface.AbstractItemTreeContentProvider;
import org.eclipse.jpt.common.utility.internal.model.value.ListAspectAdapter;
import org.eclipse.jpt.common.utility.internal.model.value.ListCollectionValueModelAdapter;
import org.eclipse.jpt.common.utility.internal.model.value.PropertyAspectAdapter;
import org.eclipse.jpt.common.utility.iterable.ListIterable;
import org.eclipse.jpt.common.utility.model.value.CollectionValueModel;
import org.eclipse.jpt.jpa.core.context.XmlFile;
import org.eclipse.jpt.jpa.core.context.orm.EntityMappings;
import org.eclipse.jpt.jpa.core.context.orm.OrmManagedType;
import org.eclipse.jpt.jpa.core.context.orm.OrmXml;
import org.eclipse.jpt.jpa.core.context.persistence.PersistenceUnit;

public class OrmXmlItemContentProvider
	extends AbstractItemTreeContentProvider<OrmXml, OrmManagedType>
{
	public OrmXmlItemContentProvider(OrmXml ormXml, Manager manager) {
		super(ormXml, manager);
	}

	public PersistenceUnit getParent() {
		return this.item.getPersistenceUnit();
	}
	
	@Override
	protected CollectionValueModel<OrmManagedType> buildChildrenModel() {
		return new ListCollectionValueModelAdapter<OrmManagedType>(new ChildrenModel(this.item));
	}

	protected static class ChildrenModel
		extends ListAspectAdapter<EntityMappings, OrmManagedType>
	{
		ChildrenModel(OrmXml ormXml) {
			super(new EntityMappingsModel(ormXml), EntityMappings.MANAGED_TYPES_LIST);
		}

		@Override
		protected ListIterable<OrmManagedType> getListIterable() {
			return this.subject.getManagedTypes();
		}

		@Override
		protected int size_() {
			return this.subject.getManagedTypesSize();
		}
	}

	protected static class EntityMappingsModel
		extends PropertyAspectAdapter<OrmXml, EntityMappings>
	{
		public EntityMappingsModel(OrmXml subject) {
			super(XmlFile.ROOT_PROPERTY, subject);
		}
		@Override
		protected EntityMappings buildValue_() {
			return this.subject.getRoot();
		}
	}
}

Back to the top