Package net.alteiar.campaign.player.plugin.imageIcon

Examples of net.alteiar.campaign.player.plugin.imageIcon.ImageIconFactory


      throws IOException {

    BufferedImage mapIcon = ImageIO.read(PathfinderGeneralPlugin.class
        .getResource(MAP_ICON));

    ImageIconFactory icon = new SimpleImageIconFactory(mapIcon);
    DocumentPlugin doc = new DocumentPlugin(
        DocumentTypeConstant.BATTLE_MAP, icon, new PanelCreateBattle(),
        null);

    return doc;
View Full Code Here


      throws IOException {

    BufferedImage mapIcon = ImageIO.read(ShadowrunGeneralPlugin.class
        .getResource(MAP_ICON));

    ImageIconFactory icon = new SimpleImageIconFactory(mapIcon);
    DocumentPlugin doc = new DocumentPlugin(
        DocumentTypeConstant.BATTLE_MAP, icon, new PanelCreateBattle(),
        null);

    return doc;
View Full Code Here

TOP

Related Classes of net.alteiar.campaign.player.plugin.imageIcon.ImageIconFactory

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.