com.extjs.gxt.ui.client.dnd.DND Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gxt Show documentation
Show all versions of gxt Show documentation
Rich Internet Application Framework for GWT
The newest version!
/*
* Sencha GXT 2.3.1 - Sencha for GWT
* Copyright(c) 2007-2013, Sencha, Inc.
* [email protected]
*
* http://www.sencha.com/products/gxt/license/
*/
package com.extjs.gxt.ui.client.dnd;
/**
* DND public constants and enumerations.
*/
public class DND {
/**
* Operation public enumeration which sets the operation performed by a drop
* target.
*/
public enum Operation {
COPY, MOVE;
}
/**
* Feedback public enumeration which sets the type of visual feedback a drop
* target will display.
*/
public enum Feedback {
APPEND, INSERT, BOTH;
}
/**
* TreeSource public enumeration which specifies the type of drops that are
* allowed with a tree drop target.
*/
public enum TreeSource {
LEAF, NODE, BOTH;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy