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

org.packagesettings.Settings Maven / Gradle / Ivy

There is a newer version: 24.9.0
Show newest version
package org.packagesettings;

public class Settings
{
  private String location;
  public String getLocation()
  {
    return location;
  }
  public Object getValue()
  {
    return value;
  }
  private Object value;
  public Settings(Object value, String location)
  {
    this.value = value;
    this.location = location;
  }
  @Override
  public String toString()
  {
    return value + " [from " + location + "]";
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy