java Programming Glossary: ixmlizable
Why can't I define a static method in a Java interface? http://stackoverflow.com/questions/512877/why-cant-i-define-a-static-method-in-a-java-interface in a Java interface Here's the example public interface IXMLizable T static T newInstanceFromXML Element e Element toXMLElement.. of the possible issues would be what happens when you call IXMLizable.newInstanceFromXML e In this case I think it should just call.. That is the goal of the interface is twofold I want the IXMLizable interface to allow me to convert classes that implement it to..
|