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(Id id) {
    throw new NotImplementedException();
}

From source file:com.silverpeas.accesscontrol.AbstractAccessController.java

/**
 * This method must fill user roles into the given container by taking in account the other
 * parameters./*w w  w.  j a v a  2  s .  c om*/
 * @param userRoles
 * @param context
 * @param userId
 * @param object
 */
protected void fillUserRoles(Set<SilverpeasRole> userRoles, AccessControlContext context, String userId,
        T object) {
    // This method must be overridden if needed
    throw new NotImplementedException();
}

From source file:au.org.ala.delta.editor.slotfile.model.VOItemAdaptor.java

@Override
public List<au.org.ala.delta.model.Attribute> getAttributes() {

    throw new NotImplementedException();
}

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

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

From source file:com.amalto.core.server.routing.MockItem.java

@Override
public ArrayList viewSearch(DataClusterPOJOPK dataClusterPOJOPK, ViewPOJOPK viewPOJOPK, IWhereItem whereItem,
        int spellThreshold, int start, int limit) throws XtentisException {
    throw new NotImplementedException();
}

From source file:com.inmobi.grill.storage.db.DBSerde.java

@Override
public Writable serialize(Object arg0, ObjectInspector arg1) throws SerDeException {
    throw new NotImplementedException();
}

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

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

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

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

From source file:edu.berkeley.compbio.ml.mcmc.TextFileDataCollector.java

public DataCollector newSubCollector(final String name) {
    throw new NotImplementedException();
}

From source file:au.org.ala.delta.editor.slotfile.model.ImageHolderAdaptor.java

@Override
public void addImage(Image image) {
    throw new NotImplementedException();
}