Search:

Type: Posts; User: jainshasha

Search: Search took 0.07 seconds.

  1. Re: How to remove argument from abstract method.

    I try to come back with some sample code to explain my problem.

    Thanks
  2. Re: How to remove argument from abstract method.

    Actually the argument m passing is a map and some classes are ignoring thet argument because they doesnt require the values from map to return a value while some classes do require that map.

    And...
  3. Re: How to remove argument from abstract method.

    Ok so let me try to explain you what i am doing.

    I have an abstract class which is extended by 5 more classes. The abstract class contains the whole code of making an xml file. But there are few...
  4. Re: How to remove argument from abstract method.

    The reason the argument is passing is because it is used in some classes that are extending that abstract class but there are also classes which are extending this abstract class but they are not...
  5. Re: How to remove argument from abstract method.

    Sorry thats my mistake i means this code


    public abstract class A{

    public abstact Object func(Object o);

    public void func1(){
    x = func(o)
    }
  6. How to remove argument from abstract method.

    Hi

    I have a query regarding the use of an abstract function in an abstract class.

    public abstract class A{

    public abstact void func(Object o);

    public void func1(){
    x = ...
Results 1 to 6 of 6