| | |
| | | int i = 0, c = list.size(); |
| | | while (i < c) { |
| | | String str = list.get(i); |
| | | if (str.contains("bs.m_pipelinepoint")) { |
| | | list.add(str.replace("bs.m_pipelinepoint", "bs.m_pipesegment")); |
| | | list.add(str.replace("bs.m_pipelinepoint", "bs.m_pipeline")); |
| | | if (str.contains("bs.m_pipelinepoint ")) { |
| | | list.add(str.replace("bs.m_pipelinepoint ", "bs.m_pipesegment ")); |
| | | list.add(str.replace("bs.m_pipelinepoint ", "bs.m_pipeline ")); |
| | | } |
| | | if (str.contains("bs.s_explorationpoint")) { |
| | | list.add(str.replace("bs.s_explorationpoint", "bs.s_surveyworksite")); |
| | | if (str.contains("bs.s_explorationpoint ")) { |
| | | list.add(str.replace("bs.s_explorationpoint ", "bs.s_surveyworksite ")); |
| | | } |
| | | |
| | | i++; |