105106107108109110111
return instance.hashCode(); } @Override public void setInt(String name, int value) throws MException { throw new ReadOnlyException(); }
119120121122123124125
return out; } @Override public void setLong(String name, long value) throws MException { throw new ReadOnlyException(); }
124125126127128129130
throw new ReadOnlyException(); } @Override public void setDouble(String name, double value) throws MException { throw new ReadOnlyException(); }
138139140141142143144
return out; } @Override public void setFloat(String name, float value) throws MException { throw new ReadOnlyException(); }
143144145146147148149
throw new ReadOnlyException(); } @Override public void setBoolean(String name, boolean value) throws MException { throw new ReadOnlyException(); }
153154155156157158159
return instance.getConfigKeys(); } @Override public void setCalendar(String name, Calendar value) throws MException { throw new ReadOnlyException(); }
163164165166167168169
return instance.getName(); } @Override public void setDate(String name, MDate value) throws MException { throw new ReadOnlyException(); }
168169170171172173174
throw new ReadOnlyException(); } @Override public void setDate(String name, Date value) throws MException { throw new ReadOnlyException(); }
173174175176177178179
throw new ReadOnlyException(); } @Override public IConfig createConfig(String key) throws MException { throw new ReadOnlyException(); }
183184185186187188189
return instance.isProperty(name); } @Override public void removeProperty(String key) throws MException { throw new ReadOnlyException(); }