Home | History | Annotate | Download | only in util

Lines Matching refs:PropertiesImpl

72             return new PropertiesImpl (null, mapper);
99 return new PropertiesImpl (map, mapper); // note: map is a defensive clone
120 ((PropertiesImpl) result).getLastProperties ().setDelegate ((PropertiesImpl) base);
128 private static final class PropertiesImpl implements IProperties, Cloneable
166 final PropertiesImpl _clone;
169 _clone = (PropertiesImpl) super.clone ();
181 PropertiesImpl scan = _clone;
182 for (PropertiesImpl delegate = m_delegate; delegate != null; delegate = delegate.m_delegate)
184 final PropertiesImpl _delegateClone;
187 _delegateClone = (PropertiesImpl) delegate.clone ();
299 PropertiesImpl (final HashMap values, final IMapper mapper)
327 PropertiesImpl getLastProperties ()
329 PropertiesImpl result = this;
331 for (PropertiesImpl delegate = m_delegate; delegate != null; delegate = delegate.m_delegate)
345 void setDelegate (final PropertiesImpl delegate)
356 private PropertiesImpl m_delegate;