// mapElement builder
ArrayList<MapElementPlugin> mapElementPlugins = new ArrayList<MapElementPlugin>();
mapElementPlugins.add(new MapElementPlugin(CircleElement.class, null,
new PanelCircleBuilder(), new PanelCircleEditor()));
mapElementPlugins.add(new MapElementPlugin(RectangleElement.class,
null, new PanelRectangleBuilder(), new PanelRectangleEditor()));
mapElementPlugins.add(new MapElementPlugin(
ShadowrunCharacterElement.class, null,
new PanelCharacterBuilder(), new PanelCharacterEditor()));
return mapElementPlugins;
}