You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
add support for Relation start/finish accepting parent's temp data
for example:
public static void relateWithEdge(@Parent.Temp List<Node> nodes){
List<Node> nodes = (List<Node>)parent.get("", "nodes");
}
i.e we can provide both @Parent.Temp and @Current.Temp in Relation start/finish
methods
currently @Temp fetches from current context in both relation start/finish and
binding.finish methods
workaround is accept parent context and fetch yourself:
public static void relateWithEdge(SAXContext parent, ...){
List<Node> nodes = (List<Node>)parent.get("", "nodes");
}
Original issue reported on code.google.com by santhosh.tekuri@gmail.com on 10 Sep 2010 at 4:32
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
santhosh.tekuri@gmail.com
on 10 Sep 2010 at 4:32The text was updated successfully, but these errors were encountered: