Package pathfinder.gui.mapElement.editor

Examples of pathfinder.gui.mapElement.editor.PanelCircleEditor


    }

    // mapElement builder
    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(
        PathfinderCharacterElement.class, null,
        new PanelCharacterBuilder(), new PanelCharacterEditor()));
View Full Code Here


  @Override
  public ArrayList<MapElementPlugin> getMapElements() {
    // 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(
        PathfinderCharacterElement.class, null,
        new PanelCharacterBuilder(), new PanelCharacterEditor()));
View Full Code Here

TOP

Related Classes of pathfinder.gui.mapElement.editor.PanelCircleEditor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.