Example usage for java.lang AbstractMethodError AbstractMethodError

List of usage examples for java.lang AbstractMethodError AbstractMethodError

Introduction

In this page you can find the example usage for java.lang AbstractMethodError AbstractMethodError.

Prototype

public AbstractMethodError() 

Source Link

Document

Constructs an AbstractMethodError with no detail message.

Usage

From source file:com.l2jfree.gameserver.model.restriction.global.AbstractRestriction.java

@Override
@DisabledRestriction
public void effectCreated(L2Effect effect) {
    throw new AbstractMethodError();
}

From source file:com.l2jfree.gameserver.model.restriction.global.AbstractRestriction.java

@Override
@DisabledRestriction
public void playerLoggedIn(L2Player activeChar) {
    throw new AbstractMethodError();
}

From source file:com.l2jfree.gameserver.model.restriction.global.AbstractRestriction.java

@Override
@DisabledRestriction
public void playerDisconnected(L2Player activeChar) {
    throw new AbstractMethodError();
}

From source file:com.l2jfree.gameserver.model.restriction.global.AbstractRestriction.java

@Override
@DisabledRestriction/*from w ww .j a va  2s  .c  o m*/
public boolean playerKilled(L2Creature activeChar, L2Player target, L2Player killer) {
    throw new AbstractMethodError();
}

From source file:com.l2jfree.gameserver.model.restriction.global.AbstractRestriction.java

@Override
@DisabledRestriction
public void playerRevived(L2Player player) {
    throw new AbstractMethodError();
}

From source file:com.l2jfree.gameserver.model.restriction.global.AbstractRestriction.java

@Override
@DisabledRestriction/*from   www. j  a v  a 2 s .  c o m*/
public void isInsideZoneStateChanged(L2Creature activeChar, byte zone, boolean isInsideZone) {
    throw new AbstractMethodError();
}

From source file:com.l2jfree.gameserver.model.restriction.global.AbstractRestriction.java

@Override
@DisabledRestriction//from www .  j  a v  a  2s .c o m
public boolean onBypassFeedback(L2Npc npc, L2Player activeChar, String command) {
    throw new AbstractMethodError();
}

From source file:com.l2jfree.gameserver.model.restriction.global.AbstractRestriction.java

@Override
@DisabledRestriction
public boolean onAction(L2Npc npc, L2Player activeChar) {
    throw new AbstractMethodError();
}

From source file:com.l2jfree.gameserver.model.restriction.global.AbstractRestriction.java

@Override
@DisabledRestriction//from   www.j  a  va2 s  .  c  om
public boolean useVoicedCommand(String command, L2Player activeChar, String target) {
    throw new AbstractMethodError();
}

From source file:com.l2jfree.gameserver.model.restriction.global.AbstractRestriction.java

@Override
@DisabledRestriction/*w ww  . ja  va 2s  . c o m*/
public void instanceChanged(L2Player activeChar, int oldInstance, int newInstance) {
    throw new AbstractMethodError();
}