Searched refs:m_includedMethods (Results 1 - 2 of 2) sorted by relevance

/external/testng/src/main/java/org/testng/xml/
H A DXmlClass.java23 private List<XmlInclude> m_includedMethods = Lists.newArrayList(); field in class:XmlClass
118 return m_includedMethods;
125 m_includedMethods = includedMethods;
161 boolean hasMethods = !m_includedMethods.isEmpty() || !m_excludedMethods.isEmpty();
240 + ((m_includedMethods == null) ? 0 : m_includedMethods.hashCode());
261 if (m_includedMethods == null) {
262 if (other.m_includedMethods != null)
264 } else if (!m_includedMethods.equals(other.m_includedMethods))
[all...]
/external/testng/src/main/java/org/testng/internal/
H A DXmlMethodSelector.java39 private ListMultiMap<String, XmlInclude> m_includedMethods = Maps.newListMultiMap(); field in class:XmlMethodSelector
71 m_includedMethods.get(MethodHelper.calculateMethodCanonicalName(tm));
255 m_includedMethods.put(methodName, m);
376 // m_includedMethods.add(methodName);
377 List<XmlInclude> includeList = m_includedMethods.get(methodName);
380 m_includedMethods.put(methodName, xi);

Completed in 193 milliseconds