return complementComponentListWithRelationship(components);
//return new ArrayList<Component>(components.values());
}
private static Hashtable<String, Component> composeComponentList (Table table) {
Package pack = copyPackage(table);
Hashtable<String, Component> components = new Hashtable<String, Component>();
for (Column column : table.getColumns()) {
String key = getComponentBeanPath(table.getName(), column.getName());
String fullPath = getComponentBeanPropertyPath(table.getName(), column.getName());
Component component = components.get(key);