Package org.openntf.domino.exceptions

Examples of org.openntf.domino.exceptions.UnimplementedException


  }

  @Override
  @Deprecated
  public int lastIndexOf(final Object arg0, final int arg1) {
    throw new UnimplementedException("lastIndexOf with two arguments not yet implemented because it's a deprecated call anyway!");
  }
View Full Code Here


      index_ = start - 1;
    }

    @Override
    public void add(final CDRecord record) {
      throw new UnimplementedException();
    }
View Full Code Here

      return index_ - 1;
    }

    @Override
    public void remove() {
      throw new UnimplementedException();
    }
View Full Code Here

      throw new UnimplementedException();
    }

    @Override
    public void set(final CDRecord record) {
      throw new UnimplementedException();
    }
View Full Code Here

TOP

Related Classes of org.openntf.domino.exceptions.UnimplementedException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.