Home
last modified time | relevance | path

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

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