35 lines
2.5 KiB
Java
35 lines
2.5 KiB
Java
|
|
/*
|
||
|
|
* Copyright (c) 2003,2007 Declarative Engineering LLC.
|
||
|
|
* All rights reserved. This program and the accompanying materials
|
||
|
|
* are made available under the terms of the Declarative Engineering LLC
|
||
|
|
* verson 1 which accompanies this distribution, and is available at
|
||
|
|
* http://declarativeengineering.com/legal/DE_Developer_License_v1.txt
|
||
|
|
*/
|
||
|
|
package com.foundation.tcv.swt;
|
||
|
|
|
||
|
|
import com.foundation.tcv.view.IAbstractRemoteViewComponent;
|
||
|
|
|
||
|
|
public interface IAbstractComponent extends IAbstractRemoteViewComponent {
|
||
|
|
public static final int MESSAGE_PING = IAbstractRemoteViewComponent.LAST_MESSAGE_NUMBER + 1;
|
||
|
|
public static final int MESSAGE_INITIALIZE = IAbstractRemoteViewComponent.LAST_MESSAGE_NUMBER + 2;
|
||
|
|
public static final int MESSAGE_VIEW_INITIALIZE = IAbstractRemoteViewComponent.LAST_MESSAGE_NUMBER + 3;
|
||
|
|
public static final int MESSAGE_VIEW_INITIALIZE_ALL = IAbstractRemoteViewComponent.LAST_MESSAGE_NUMBER + 4;
|
||
|
|
public static final int MESSAGE_VIEW_RELEASE = IAbstractRemoteViewComponent.LAST_MESSAGE_NUMBER + 5;
|
||
|
|
public static final int MESSAGE_VIEW_RELEASE_ALL = IAbstractRemoteViewComponent.LAST_MESSAGE_NUMBER + 6;
|
||
|
|
public static final int MESSAGE_VIEW_REFRESH = IAbstractRemoteViewComponent.LAST_MESSAGE_NUMBER + 7;
|
||
|
|
public static final int MESSAGE_VIEW_REFRESH_ALL = IAbstractRemoteViewComponent.LAST_MESSAGE_NUMBER + 8;
|
||
|
|
public static final int MESSAGE_VIEW_SYNCHRONIZE = IAbstractRemoteViewComponent.LAST_MESSAGE_NUMBER + 9;
|
||
|
|
public static final int MESSAGE_VIEW_SYNCHRONIZE_ALL = IAbstractRemoteViewComponent.LAST_MESSAGE_NUMBER + 10;
|
||
|
|
public static final int MESSAGE_ADD_DECORATION = IAbstractRemoteViewComponent.LAST_MESSAGE_NUMBER + 11;
|
||
|
|
public static final int MESSAGE_REMOVE_DECORATION = IAbstractRemoteViewComponent.LAST_MESSAGE_NUMBER + 12;
|
||
|
|
public static final int MESSAGE_VIEW_SUSPEND_RENDERING = IAbstractRemoteViewComponent.LAST_MESSAGE_NUMBER + 13;
|
||
|
|
public static final int MESSAGE_VIEW_RESUME_RENDERING = IAbstractRemoteViewComponent.LAST_MESSAGE_NUMBER + 14;
|
||
|
|
public static final int MESSAGE_VIEW_INITIALIZATION_COMPLETE = IAbstractRemoteViewComponent.LAST_MESSAGE_NUMBER + 15;
|
||
|
|
public static final int MESSAGE_SUSPEND_REDRAW = IAbstractRemoteViewComponent.LAST_MESSAGE_NUMBER + 16;
|
||
|
|
public static final int MESSAGE_RESUME_REDRAW = IAbstractRemoteViewComponent.LAST_MESSAGE_NUMBER + 17;
|
||
|
|
public static final int LAST_MESSAGE_NUMBER = IAbstractRemoteViewComponent.LAST_MESSAGE_NUMBER + 17;
|
||
|
|
|
||
|
|
public static final int LINK_TARGET_SYNCHRONIZE_ALL = 1;
|
||
|
|
public static final int LINK_TARGET_SYNCHRONIZE = 2;
|
||
|
|
public static final int LAST_LINK_TARGET = 2;
|
||
|
|
}//IAbstractComponent//
|