Extending PeopleCode with Java!

preview_player
Показать описание

Here is the code referenced in this episode:

MessageBox(0, "", 0, 0, "The temp file name is: %1", &tempFileName);

Рекомендации по теме
Комментарии
Автор

Having worked with PS since the early 90's and getting into my late 50's, I'm finding it harder to get excited about coding in the PS environments, but topics like this help excite my inner programming child. Thanks.

jeffjohnson
Автор

Excellent video and great alternative solution.

hecticserrano
Автор

Always appreciated, but the big issue right is that as of Java 1.7 and onward, Generics became increasingly integral to Java (and C# and others), but PS (at least that I know of) doesn't provide any easy way to handle it. Using Reflection can be very complicated as a workaround - you can also write your own jar/classes, but now you're putting a bunch of logic OUTSIDE your logic which is always a pain. I'm not sure if there's a better solution but would love to hear your ideas!

GaryFurash