Hi everyone
I have a problem in my java program. I have posted the code below. See if you can help me out.
Thanks in advacneCode:<pre>public class FileSystem { private Directory _current; private enum Cmd { CD { String execute(String param) { Directory newDir = _current.getChild(param); ... } }, ... ; abstract String execute(String param); } ... }</pre>
Bookmarks