Protected: Android (Logtel) Course Pune June 2010 INFO
There is no excerpt because this is a protected post.
There is no excerpt because this is a protected post.
Using the Java Reflection API we can indirectly invoke private methods from outside the scope of the class they belong to. The AcceesibleObject class is the base class for Method, Field and Constructor. The AccessibleObject class provides the ability to flag a reflected object and suppress default Java language access control checks. Calling the setAccessible method [...]
During the 2010 Summer semester I am going to deliver the Internet Programming course in HIT. This course is delivered as part HIT’s Computer Science BSc academic program. It starts with a detailed coverage of the Java programming language and continues with a detailed coverage of Scala. The topics we are going to cover in Scala include the [...]
Three days ago I had a meeting with the operation manager of one of the israeli training centers I am working with. The meeting started with a short overview of our great cooperation and concluded with their complaint about the huge number of slides I prepare for each training. They pointed at the logistic problem involved with [...]
I am glad to announce about “Java SE Efficient Programming” new course available for free at www.abelski.com. This course covers the most important techniques for designing and constructing better Java SE applications. Each technique is thoroughly explained and presented together with a code example. Using these techniques your code will be clear, correct, usable, robust, [...]
We can use a ClassLoader object to dynamically load a class into the execution of our code. Trying to load the very same class one more time won’t reload it unless we do it using a new ClassLoader object. We can use this technique for reloading a new modified class during the execution of our code. In order [...]
Using the Java Reflection API we can access private members from outside the scope of the class they belong to. When the private member is a field we can even change its value and when the private member is a method we can even indirectly invoke it. The AcceesibleObject class is the base class for [...]
There is no excerpt because this is a protected post.
I am glad to announce about “Java Security Fundamentals” new course available for free at www.abelski.com. This course covers the Java fundamental features that turn it into a secure software programming language. Through this course you will become familiar with the possibilities you have to turn your code into a more secure one. Among the [...]
I am glad to announce about the new version of the ’Android Fundamentals’ course I have recently developed. The professional commercial version is available at www.xperato.com. The community version is available for free personal and academic usage at www.abelski.com. I will be more than happy to get your feedback! The new version covers all the new stuff [...]