Examples of SubscribedClientListModel


Examples of org.astrogrid.samp.gui.SubscribedClientListModel

     */
    public SendManager( GuiHubConnector connector, String mtype ) {
        connector_ = connector;
        mtype_ = mtype;
        comboBoxModel_ =
            new SendComboBoxModel( new SubscribedClientListModel( connector,
                                                                  mtype ) );
    }
View Full Code Here

Examples of org.astrogrid.samp.gui.SubscribedClientListModel

     * @param format    the expected format/mime type, if known, may be null
     * @param ucdMap    maps UCD to column value for the current table row (may be empty)
     */
    public TableSendActionManager(CatalogNavigator parent, GuiHubConnector connector, URL url,
                                  String format, Map ucdMap) {
        super(parent, connector, new SubscribedClientListModel(connector, getSendMtypes()));
        _navigator = parent;
        _url = url;
        _format = format;
        _ucdMap = ucdMap;
    }
View Full Code Here

Examples of org.astrogrid.samp.gui.SubscribedClientListModel

     * @param parent parent component
     * @param connector hub connector
     * @param url the URL of the image
     */
    public ImageSendActionManager(MainImageDisplay parent, GuiHubConnector connector, URL url) {
        super((Component) parent, connector, new SubscribedClientListModel(connector, getSendMtypes()));
        _imageDisplay = parent;
        _url = url;
    }
View Full Code Here
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.