コード例 #1
0
ファイル: DragAndDropWrapper.java プロジェクト: vralfy/vaadin
 /** @return a detail about the drags vertical position over the wrapper. */
 public VerticalDropLocation getVerticalDropLocation() {
   return VerticalDropLocation.valueOf((String) getData("verticalLocation"));
 }
コード例 #2
0
 /**
  * Returns the vertical location within the cell the component was dropped
  *
  * @return
  */
 public VerticalDropLocation getVerticalDropLocation() {
   return VerticalDropLocation.valueOf(
       getData(Constants.DROP_DETAIL_VERTICAL_DROP_LOCATION).toString());
 }