Examples of PhpNewFileDialog


Examples of com.jetbrains.php.actions.PhpNewFileDialog

  @Override
  public void hyperlinkUpdate(@NotNull Notification notification, @NotNull HyperlinkEvent event) {
    if (event.getEventType() == HyperlinkEvent.EventType.ACTIVATED) {
      if (event.getDescription().equals("create") && !project.isDisposed()) {
        // TODO: Create and show Virtual File.
        AsyncResult<Boolean> booleanAsyncResult = new PhpNewFileDialog(project, directory).showAndGetOk();
        Boolean result = booleanAsyncResult.getResult();
        booleanAsyncResult.doWhenDone(new AsyncResult.Handler<Boolean>(){

          @Override
          public void run(Boolean bool) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.