Hi Folks,
I am trying to fetch the iwhome directory location using the interface CSInstallationObject and method getInstallHome(). but I am unable to find the class method which would have the implementation of interface CSInstallationObject as I would need to create an object of that implementing class to call the method getInstallHome(). Can anyone let me know how to call this method from the interface!!
Please let me know if my understanding is wrong here. Following is the code snippet;
CSInstallationObject csInsObj;
System.out.println("IWHome Directory: " + csInsObj.getInstallHome());
As I am unable to initialize the instance csInsObj hence getting getting the error as "local Variable not Initialized"
Also if someone can let me know how can we use other such interface methods(whether we need to search for the implementing classes everytime???)