OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_xmlDependencyGroups
(Results
1 - 2
of
2
) sorted by null
/external/testng/src/main/java/org/testng/xml/
XmlDependencies.java
13
private Map<String, String>
m_xmlDependencyGroups
= Maps.newHashMap();
17
m_xmlDependencyGroups
.put(name, dependsOn);
21
return
m_xmlDependencyGroups
;
26
boolean hasElements = hasElements(
m_xmlDependencyGroups
);
30
for (Map.Entry<String, String> entry :
m_xmlDependencyGroups
.entrySet()) {
XmlTest.java
59
private Map<String, String>
m_xmlDependencyGroups
= Maps.newHashMap();
500
|| !
m_xmlDependencyGroups
.isEmpty()) {
545
if (
m_xmlDependencyGroups
!= null && !
m_xmlDependencyGroups
.isEmpty()) {
547
for (Map.Entry<String, String> entry :
m_xmlDependencyGroups
.entrySet()) {
867
if (!
m_xmlDependencyGroups
.containsKey(group)) {
868
m_xmlDependencyGroups
.put(group, dependsOn);
885
return
m_xmlDependencyGroups
;
Completed in 407 milliseconds