24252627282930
this.name = name; this.function = function; } public Property(String name, Object value) { this(name, new IdentityFunction(value)); }
545556575859606162
this.properties.add(new Property(property, value)); } public void add(String property, Function function) { if (function == null) { function = new IdentityFunction(null); } this.properties.add(new Property(property, function)); }