Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
public static String attributeStartSeparator = "[";
public static boolean hasAttributeInPath(String path) {
if (path.indexOf(attributeStartSeparator) >= 0)
return true;
return false;
}
}