net.sf.nakeduml.obsolete.uimetamodel.UIMModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of metamodel Show documentation
Show all versions of metamodel Show documentation
A uml code generator and execution engine
The newest version!
package net.sf.nakeduml.obsolete.uimetamodel;
import java.io.Serializable;
import java.util.HashMap;
import java.util.Map;
public class UIMModel implements Serializable{
private static final long serialVersionUID = 1219382799095571786L;
private Map userInteractionsByPath = new HashMap();
public UIMEntityUserInteraction getUserInteractionByPath(String path){
return this.userInteractionsByPath.get(path);
}
}