Package de.mhus.lib.util

Examples of de.mhus.lib.util.ReadOnlyException


    return instance.hashCode();
  }

  @Override
  public void setInt(String name, int value) throws MException {
    throw new ReadOnlyException();
  }
View Full Code Here


    return out;
  }

  @Override
  public void setLong(String name, long value) throws MException {
    throw new ReadOnlyException();
  }
View Full Code Here

    throw new ReadOnlyException();
  }

  @Override
  public void setDouble(String name, double value) throws MException {
    throw new ReadOnlyException();
  }
View Full Code Here

    return out;
  }

  @Override
  public void setFloat(String name, float value) throws MException {
    throw new ReadOnlyException();
  }
View Full Code Here

    throw new ReadOnlyException();
  }

  @Override
  public void setBoolean(String name, boolean value) throws MException {
    throw new ReadOnlyException();
  }
View Full Code Here

    return instance.getConfigKeys();
  }

  @Override
  public void setCalendar(String name, Calendar value) throws MException {
    throw new ReadOnlyException();
  }
View Full Code Here

    return instance.getName();
  }

  @Override
  public void setDate(String name, MDate value) throws MException {
    throw new ReadOnlyException();
  }
View Full Code Here

    throw new ReadOnlyException();
  }

  @Override
  public void setDate(String name, Date value) throws MException {
    throw new ReadOnlyException();
  }
View Full Code Here

    throw new ReadOnlyException();
  }
 
  @Override
  public IConfig createConfig(String key) throws MException {
    throw new ReadOnlyException();
  }
View Full Code Here

    return instance.isProperty(name);
  }

  @Override
  public void removeProperty(String key) throws MException {
    throw new ReadOnlyException();
  }
View Full Code Here

TOP

Related Classes of de.mhus.lib.util.ReadOnlyException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.