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

org.jetbrains.android.resourceManagers.ValueResourceInfo Maven / Gradle / Ivy

Go to download

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

The newest version!
package org.jetbrains.android.resourceManagers;

import com.android.resources.ResourceType;
import com.intellij.openapi.vfs.VirtualFile;
import com.intellij.psi.xml.XmlAttributeValue;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;

/**
 * @author Eugene.Kudelevsky
 */
public interface ValueResourceInfo extends Comparable {
  @Nullable
  XmlAttributeValue computeXmlElement();

  @NotNull
  VirtualFile getContainingFile();

  @NotNull
  String getName();

  @NotNull
  ResourceType getType();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy