In the example from Buildap Library Development Guide.doc,
Is there any difference between these two ways of firing outpins?
1. using inoutpin
return ("" + name + " says, Hello World"

;
2. using inpin
outGreeting.fireOutPin("" + name + " says, Hello World"

;
Obviously, option 2 allows you to fire/return multiple Outpins from one function/inpin.
--
"Sample inoutpin, NOTE there is no notion of inout pin as it is. * This notion used only for internal part developer’s usage"
Based on this comment, I take it that we should avoid using inoutpins?
thanks,
-Ed
------------------
/**
* Sample inpin: it uses outpin to fire out event
*
* @vscb.inpin
* id="1"
* name="hello"
*
* @param name String
*/
public void sayHello(String name) {
outGreeting.fireOutPin("" + name + " says, Hello World"

;
}
/**
* Sample inoutpin, NOTE there is no notion of inout pin as it is.
* This notion used only for internal part developer’s usage.
* And it is just conbination of one inpin and one outpin
* (NOTE if outpin id equal to existing outpin id
* then the same outpin will be used, otherwise new one will be created)
*
* @vscb.inoutpin
* id="2"
* name="hello2"
* out-id="51"
* out-name="GREETING"
*
* @param name String
*/
public String sayHello2(String name) {
return ("" + name + " says, Hello World"

;
}