All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jetbrains.jps.android.model.impl.AndroidImportableProperty Maven / Gradle / Ivy

Go to download

A packaging of the IntelliJ Community Edition android-common library. This is release number 1 of trunk branch 142.

The newest version!
package org.jetbrains.jps.android.model.impl;

import org.jetbrains.annotations.NotNull;

/**
 * @author Eugene.Kudelevsky
 */
public enum AndroidImportableProperty {
  MANIFEST_FILE_PATH("Manifest file path"),
  RESOURCES_DIR_PATH("Resources directory path"),
  ASSETS_DIR_PATH("Assets directory path"),
  NATIVE_LIBS_DIR_PATH("Native libs directory path");

  private final String myDisplayName;

  AndroidImportableProperty(@NotNull String displayName) {
    myDisplayName = displayName;
  }

  @NotNull
  public String getDisplayName() {
    return myDisplayName;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy