Package com.intellij.openapi.util

Examples of com.intellij.openapi.util.UserDataHolder


public class Util {
  public static final Icon NO_ICON = null;
  private static final Key<Project> PROJECT_KEY = Key.create("Project");

  public static UserDataHolder holdingOnTo(Project project) {
    UserDataHolder userDataHolder = new UserDataHolderBase();
    userDataHolder.putUserData(PROJECT_KEY, project);
    return userDataHolder;
  }
View Full Code Here

TOP

Related Classes of com.intellij.openapi.util.UserDataHolder

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.