package br.puc.molic.diagram;
import java.util.ArrayList;
import org.eclipse.gmf.runtime.emf.type.core.IElementType;
import br.puc.molic.diagram.providers.MolicElementTypes;
//import com.ugosan.omnimodeling.sketch.SketchTool;
/**
* OmniModeling tool
*/
public class MyTool { //extends SketchTool {
/*
@Override
public ArrayList<IElementType> getTypes() {
ArrayList<IElementType> types = new ArrayList<IElementType>();
types.add(MolicElementTypes.Scene_2001);
types.add(MolicElementTypes.SystemProcess_2002);
types.add(MolicElementTypes.OpeningPoint_2005);
types.add(MolicElementTypes.ClosingPoint_2006);
types.add(MolicElementTypes.Monologue_2003);
types.add(MolicElementTypes.UbiquitousAccess_2004);
return types;
}
public IElementType getConnection(){
return MolicElementTypes.Utterance_4001;
}
public IElementType getDashedConnection(){
return MolicElementTypes.BRTUtterance_4002;
}
*/
}