org.fxconnector.remote.RemoteApplication Maven / Gradle / Ivy
/*
* Scenic View,
* Copyright (C) 2012 Jonathan Giles, Ander Ruiz, Amy Fowler
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package org.fxconnector.remote;
import java.rmi.Remote;
import java.rmi.RemoteException;
import org.fxconnector.Configuration;
import org.fxconnector.StageID;
import org.fxconnector.details.DetailPaneType;
import org.fxconnector.event.FXConnectorEventDispatcher;
import org.fxconnector.node.SVNode;
interface RemoteApplication extends Remote {
public void configurationUpdated(final StageID id, Configuration configuration) throws RemoteException;
public void update(final StageID id) throws RemoteException;
public void setEventDispatcher(final StageID id, FXConnectorEventDispatcher dispatcher) throws RemoteException;
public StageID[] getStageIDs() throws RemoteException;
public void close(final StageID id) throws RemoteException;
public void close() throws RemoteException;
public void setSelectedNode(final StageID id, SVNode value) throws RemoteException;
public void removeSelectedNode(final StageID id) throws RemoteException;
public void setDetail(StageID id, DetailPaneType detailType, int detailID, String value) throws RemoteException;
public void animationsEnabled(final StageID id, boolean enabled) throws RemoteException;
public void updateAnimations(final StageID id) throws RemoteException;
public void pauseAnimation(StageID id, int animationID) throws RemoteException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy