summaryrefslogtreecommitdiffstats
path: root/collaboration/GSoC-2011-Nirmal/CompositeDiagramGeneratorUsingBatik/src/main/java/org/apache/tuscany/sca/impl/layout/PropertyAllocator.java
blob: 1574d1247f2501be89028dce6f2190c7b514e6dd (plain)
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
package org.apache.tuscany.sca.impl.layout;

import java.util.Iterator;

import org.apache.tuscany.sca.impl.artifacts.Component;
import org.apache.tuscany.sca.impl.artifacts.Reference;

public class PropertyAllocator {
	Entity entity;

	public PropertyAllocator(Entity e) {
		entity = e;
	}
	
	public void allocatePropertiesOfRefs(){
		int height=0;
		
		
		for(Iterator it=entity.getReferenceToServiceMap().keySet().iterator();it.hasNext();){
			String ref = it.next();
			
		}
	}

	
}