Beginners C# Tutorial - Properties

Beginners C# Tutorial - PropertiesProperties provide the opportunity to protect a field in a class by reading and writing to it through the property. In other languages, this is often accomplished by programs implementing specialized getter and setter methods. C# properties enable this type of protection while also letting you access the property just like it was a field. To get an appreciation for what properties accomplish, let’s take a look at how to provide field encapsulation by traditional methods.
Read more

A short Java RMI tutorial

This is a technical literature study which purpose is to describe the basic parts of Java Remote Method Invocation. Remote Method Invocation, abbreviated as RMI [SUN02, p2], provides support for distributed objects in Java, i.e. it allows objects to invoke methods on remote objects. The calling objects can use the exact same syntax as for local invocations. The Java RMI model has two general requirements. The first requirement is that the RMI model shall be simple and easy to use and the second requirement it that the model shall fit into the Java language in a natural way.
Read more

Programming Acrobat JavaScript Using Visual Basic

Programming Acrobat JavaScript Using Visual BasicAcrobat 7.0 provides a rich set of JavaScript programming interfaces that are designed to be used from within the Acrobat environment. It also provides a mechanism (known as JSObject) that allows external clients to access the same functionality from environments such as Visual Basic.
This document gives you the information you need to get started using the extended functionality of JavaScript from a Visual Basic programming environment. It provides a set of examples to illustrate the key concepts.
Read more