public String toString()

in mustella/src/main/java/marmotinni/SetProperty.java [100:110]


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