Package de.iritgo.aktera.address.gui

Source Code of de.iritgo.aktera.address.gui.AddressActionColumn

/**
* This file is part of the Iritgo/Aktera Framework.
*
* Copyright (C) 2005-2011 Iritgo Technologies.
* Copyright (C) 2003-2005 BueroByte GbR.
*
* Iritgo licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package de.iritgo.aktera.address.gui;


import de.iritgo.aktario.core.Engine;
import de.iritgo.aktario.core.gui.IMenuItemProvider;
import de.iritgo.aktario.core.gui.ITableColumn;
import de.iritgo.aktera.address.AddressClientManager;
import de.iritgo.aktera.address.wsclient.Address;
import de.iritgo.aktera.address.wsclient.AddressClientService;
import javax.swing.ImageIcon;
import javax.swing.JPopupMenu;
import javax.swing.JTable;
import java.awt.event.MouseEvent;


public class AddressActionColumn extends ITableColumn
{
  public AddressActionColumn()
  {
    setCellIcon(new ImageIcon(AddressClientManager.class.getResource("/resources/execute2-16.png")));
  }

  @Override
  public void onCellClicked(Object item, JTable addressTable, MouseEvent e)
  {
    AddressClientManager acm = (AddressClientManager) Engine.instance().getManager(AddressClientManager.ID);
    AddressClientService acs = (AddressClientService) Engine.instance().getManager(AddressClientService.ID);
    Address address = (Address) item;

    address.setPhoneNumbers(acs.listPhoneNumbers(address.getStoreId(), address.getId()));

    JPopupMenu menu = new JPopupMenu();

    for (IMenuItemProvider itemProvider : acm.getAddressTableActionMenuItemProviders())
    {
      menu.add(itemProvider.create(address));
    }

    menu.show(addressTable, (int) e.getPoint().getX(), (int) e.getPoint().getY());
  }
}
TOP

Related Classes of de.iritgo.aktera.address.gui.AddressActionColumn

TOP
Copyright © 2018 www.massapi.com. 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.