Package org.eclipse.jst.pagedesigner.validation.caret

Examples of org.eclipse.jst.pagedesigner.validation.caret.DropActionData


  protected IPositionMediator createDropChildValidator(DropRequest r) {
    DropData dropData = createDropData(r);

    if (dropData != null) {
      MyDnDPositionValidator validator = new MyDnDPositionValidator(
          new DropActionData(ActionData.PALETTE_DND, dropData));
      return validator;
    }
    return null;
  }
View Full Code Here


        }
    }

    protected final IPositionMediator createDefaultDropChildValidator(DropData r)
    {
        return new DnDPositionValidator(new DropActionData(
                ActionData.COMPONENT_MOVE, r));
    }
View Full Code Here

        }
        return position;
    }

    protected final IPositionMediator createDefaultDropChildValidator(DropData data) {
        return new DnDPositionValidator(new DropActionData(
                ActionData.PALETTE_DND, data));    }
View Full Code Here

TOP

Related Classes of org.eclipse.jst.pagedesigner.validation.caret.DropActionData

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.