001/*
002 * Copyright (c) 2010 The Regents of the University of California.
003 * All rights reserved.
004 *
005 * '$Author: crawl $'
006 * '$Date: 2012-11-26 22:22:04 +0000 (Mon, 26 Nov 2012) $' 
007 * '$Revision: 31121 $'
008 * 
009 * Permission is hereby granted, without written agreement and without
010 * license or royalty fees, to use, copy, modify, and distribute this
011 * software and its documentation for any purpose, provided that the above
012 * copyright notice and the following two paragraphs appear in all copies
013 * of this software.
014 *
015 * IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY
016 * FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
017 * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF
018 * THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF
019 * SUCH DAMAGE.
020 *
021 * THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,
022 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
023 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE
024 * PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF
025 * CALIFORNIA HAS NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES,
026 * ENHANCEMENTS, OR MODIFICATIONS.
027 *
028 */
029
030package org.kepler.objectmanager.repository;
031
032import java.awt.Component;
033import java.awt.event.MouseEvent;
034
035import javax.swing.JTree;
036import javax.swing.tree.TreePath;
037
038/**
039 * Created by IntelliJ IDEA.
040 * User: sean
041 * Date: Mar 16, 2010
042 * Time: 11:06:42 AM
043 */
044public class RepositoryPopup {
045        
046        public RepositoryPopup() {}
047        
048        public void getPopup(JTree tree, MouseEvent e, TreePath selPath, Component parent) {
049                // No popup
050//              RemoteOntologyComponentPopup ocp = new RemoteOntologyComponentPopup(selPath, parent);
051//              ocp.initialize();
052//              tree.add(ocp);
053//              tree.setSelectionPath(selPath);
054//              ocp.show(e.getComponent(), e.getX(), e.getY());
055        }
056}