* Learn whether a String contains replaceable properties.
* @param value the String to check.
* @return <code>true</code> if <code>value</code> contains property notation.
*/
public boolean containsProperties(String value) {
return new ParseProperties(getProject(), getExpanders(), this)
.containsProperties(value);
}