Issue #427 event controllers use ISharedDisplaySession
Change-Id: Ia0e41dcb7f0b49956a4a3c88a037894b972435c9 Former-commit-id:ef03821455
[formerlyf6226a89d9
] [formerlycbf105015f
[formerly bf6cf477825be1d19081965ca9e958ebf423c0af]] Former-commit-id:cbf105015f
Former-commit-id:e28fc62a56
This commit is contained in:
parent
ecc3dc9a70
commit
ff5fec3f09
2 changed files with 4 additions and 4 deletions
|
@ -43,7 +43,7 @@ import com.raytheon.viz.ui.panes.PaneManager;
|
||||||
|
|
||||||
public class CollaborationEditor extends AbstractEditor {
|
public class CollaborationEditor extends AbstractEditor {
|
||||||
|
|
||||||
public static final String EDITOR_ID = "com.raytheon.uf.viz.collaboration.display.editor.CollaborationEditor";
|
public static final String EDITOR_ID = "com.raytheon.uf.viz.collaboration.ui.editor.CollaborationEditor";
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected PaneManager getNewPaneManager() {
|
protected PaneManager getNewPaneManager() {
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
**/
|
**/
|
||||||
package com.raytheon.uf.viz.collaboration.ui.role;
|
package com.raytheon.uf.viz.collaboration.ui.role;
|
||||||
|
|
||||||
import com.raytheon.uf.viz.collaboration.comm.provider.session.VenueSession;
|
import com.raytheon.uf.viz.collaboration.comm.identity.ISharedDisplaySession;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* TODO Add Description
|
* TODO Add Description
|
||||||
|
@ -41,9 +41,9 @@ import com.raytheon.uf.viz.collaboration.comm.provider.session.VenueSession;
|
||||||
public abstract class AbstractRoleEventController implements
|
public abstract class AbstractRoleEventController implements
|
||||||
IRoleEventController {
|
IRoleEventController {
|
||||||
|
|
||||||
protected VenueSession session;
|
protected ISharedDisplaySession session;
|
||||||
|
|
||||||
protected AbstractRoleEventController(VenueSession session) {
|
protected AbstractRoleEventController(ISharedDisplaySession session) {
|
||||||
this.session = session;
|
this.session = session;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue