Files
Brainstorm/Foundation TCV SWT/src/com/foundation/tcv/swt/ITrayItem.java

24 lines
1.4 KiB
Java
Raw Normal View History

2014-05-30 10:31:51 -07:00
/*
* Copyright (c) 2003,2009 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.swt.IAbstractComponent;
public interface ITrayItem extends IAbstractComponent {
public static final int MESSAGE_SET_IS_VISIBLE = IAbstractComponent.LAST_MESSAGE_NUMBER + 1;
public static final int MESSAGE_SET_TOOL_TIP_TEXT = IAbstractComponent.LAST_MESSAGE_NUMBER + 2;
public static final int MESSAGE_SET_IMAGE = IAbstractComponent.LAST_MESSAGE_NUMBER + 3;
public static final int MESSAGE_VIEW_SYNCHRONIZE_SELECTION = IAbstractComponent.LAST_MESSAGE_NUMBER + 4;
public static final int MESSAGE_ADD_SELECTION_LINK = IAbstractComponent.LAST_MESSAGE_NUMBER + 5;
public static final int MESSAGE_SET_SYNCHRONIZE_SELECTIONS = IAbstractComponent.LAST_MESSAGE_NUMBER + 6;
public static final int LAST_MESSAGE_NUMBER = IAbstractComponent.LAST_MESSAGE_NUMBER + 6;
public static final int LINK_TARGET_IS_VISIBLE = IAbstractComponent.LAST_LINK_TARGET + 1;
public static final int LINK_TARGET_TOOL_TIP_TEXT = IAbstractComponent.LAST_LINK_TARGET + 2;
public static final int LAST_LINK_TARGET = IAbstractComponent.LAST_LINK_TARGET + 2;
}//ITrayItem//