Home
last modified time | relevance | path

Searched refs:m_values (Results 1 – 1 of 1) sorted by relevance

/trunk/main/wizards/com/sun/star/wizards/common/
H A DNamedValueCollection.java44 final private HashMap< String, Object > m_values = new HashMap< String, Object >(); field in NamedValueCollection
53 m_values.put( i_values[i].Name, i_values[i].Value ); in NamedValueCollection()
58 m_values.put( i_name, i_value ); in put()
64 if ( m_values.containsKey( i_key ) ) in getOrDefault()
66 final Object value = m_values.get( i_key ); in getOrDefault()
79 if ( m_values.containsKey( i_key ) ) in queryOrDefault()
81 final Object value = m_values.get( i_key ); in queryOrDefault()
89 return m_values.containsKey( i_key ); in has()
94 PropertyValue[] values = new PropertyValue[ m_values.size() ]; in getPropertyValues()
96 Iterator< Entry< String, Object > > iter = m_values.entrySet().iterator(); in getPropertyValues()

Completed in 8 milliseconds