package com.bladecoder.engineeditor.setup; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import com.bladecoder.engineeditor.setup.DependencyBank.ProjectType; public class Dependency { private HashMap<ProjectType, String[]> subDependencyMap = new HashMap<ProjectType, String[]>(); private String[] gwtInherits; private String name; public Dependency(String name, String[] gwtInherits, String[]... subDependencies) { this.name = name; this.gwtInherits = gwtInherits; for (ProjectType type : ProjectType.values()) { subDependencyMap.put(type, subDependencies[type.ordinal()]); } } public String[] getDependencies(ProjectType type) { return subDependencyMap.get(type); } public List<String> getIncompatibilities(ProjectType type) { List<String> incompat = new ArrayList<String>(); String[] subArray = subDependencyMap.get(type); if (subArray == null) { incompat.add("Dependency " + name + " is not compatible with sub module " + type.getName().toUpperCase()); } return incompat; } public String[] getGwtInherits() { return gwtInherits; } public String getName() { return name; } @Override public boolean equals(Object obj) { if (obj instanceof Dependency) { if (((Dependency) obj).getName().equals(getName())) { return true; } } return false; } @Override public int hashCode() { return name.hashCode(); } }