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

org.solovyev.android.APropertiesProvider Maven / Gradle / Ivy

There is a newer version: 1.1.18
Show newest version
package org.solovyev.android;

import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;

import java.util.Collection;

/**
 * User: serso
 * Date: 8/22/12
 * Time: 1:45 AM
 */
public interface APropertiesProvider {

    @Nullable
    AProperty getProperty(@NotNull String name);

    @Nullable
    String getPropertyValue(@NotNull String name);

    @NotNull
    Collection getPropertiesCollection();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy