Skip to content

Instantly share code, notes, and snippets.

@okram
Created May 12, 2014 21:10
Show Gist options
  • Save okram/61ff44849d5db6a41794 to your computer and use it in GitHub Desktop.
Save okram/61ff44849d5db6a41794 to your computer and use it in GitHub Desktop.
@Override
public <V> Property<V> setProperty(final String key, final V value) {
this.strategyWrappedGraph.strategy().compose(
s -> s.<V>getElementSetProperty(elementStrategyContext),
this.baseElement::setProperty).accept(key, value);
return null; // TODO: Stephen, help please! This needs to return the created Property<V>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment