
org.jetbrains.android.resourceManagers.ValueResourceInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android Show documentation
Show all versions of android Show documentation
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