Example usage for org.apache.commons.lang NotImplementedException NotImplementedException

List of usage examples for org.apache.commons.lang NotImplementedException NotImplementedException

Introduction

In this page you can find the example usage for org.apache.commons.lang NotImplementedException NotImplementedException.

Prototype

public NotImplementedException() 

Source Link

Document

Constructs a new NotImplementedException with default message.

Usage

From source file:com.amalto.core.query.user.VisitorAdapter.java

public T visit(DateTimeConstant constant) {
    throw new NotImplementedException();
}

From source file:com.bloatit.model.visitor.AbstractModelClassVisitor.java

@Override
public T visit(final Contribution model) {
    throw new NotImplementedException();
}

From source file:fi.vm.sade.eperusteet.ylops.service.external.impl.KayttajanTietoServiceImpl.java

@Override
public KayttajanProjektitiedotDto haeOpetussuunnitelma(String oid, Long opsId) {
    // TODO
    throw new NotImplementedException();
}

From source file:com.github.seleniumpm.SeleniumWebdriver.java

public void doubleClickAt(String s, String s1) {
    throw new NotImplementedException();
}

From source file:com.hartveld.queryable.reactive.subjects.AbstractSubject.java

@Override
public Observable<T> peek(final Consumer<? super T> consumer) {
    throw new NotImplementedException();
}

From source file:com.opengamma.analytics.financial.greeks.AbstractGreekVisitor.java

@Override
public T visitZetaBleed() {
    throw new NotImplementedException();
}

From source file:com.celements.photo.service.MetaInfoScriptService.java

/**
 * Get a specified Metadate from an image.
 * /*from  w w  w .j a v a2s .co  m*/
 * @param doc XWikiDocument of the album.
 * @param id Hashcode of the image.
 * @param imageMethods Used to get the image.
 * @param tag Name of the metatag to get.
 * @param context XWikiContext
 * @return The Metadate of the specified Tag.
 * @throws XWikiException
 * @throws MetadataException
 * @throws IOException
 */
public Metadate getTag(Document doc, String id, String tag) {
    //TODO implement
    throw new NotImplementedException();
}

From source file:com.noxpvp.mmo.MMOPlayer.java

public PassiveAbility<?>[] getPassiveAbilities() {
    throw new NotImplementedException();
}

From source file:com.sapienter.jbilling.server.metafields.MetaContent.java

default MetaField fieldNameRetrievalFunction(MetaContent customizedEntity, String name) {
    throw new NotImplementedException();
}