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

com.softicar.platform.common.core.properties.IProperty Maven / Gradle / Ivy

Go to download

The SoftiCAR Platform is a lightweight, Java-based library to create interactive business web applications.

There is a newer version: 50.0.0
Show newest version
package com.softicar.platform.common.core.properties;

import java.util.Properties;

/**
 * A generic interface for properties.
 * 

* A property is a configuration value usually defined in a {@link Properties} * file. Every property has a name and a value of various type. * * @param * the type of the property value * @author Oliver Richers */ public interface IProperty { /** * Returns the {@link PropertyName} that identifies this {@link IProperty}. * * @return the {@link PropertyName} of this {@link IProperty} (never null) */ PropertyName getPropertyName(); /** * Returns the value of this {@link IProperty}. * * @return the value of this {@link IProperty} (may be null) */ T getValue(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy