public String toString()

in mustella/src/main/java/marmotinni/AssertPropertyValue.java [99:109]


    public String toString()
    {
		String s = "AssertPropertyValue";
		if (target != null)
			s += ": target = " + target.toString();
		if (propertyName != null)
			s += ": propertyName = " + propertyName.toString();
		if (value != null)
			s += ": value = " + value;
		return s;
	}