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/*from w ww .jav a  2  s. c  o  m*/
public boolean canDestroyItem(L2Player player, int itemId, L2ItemInstance item) {
    throw new AbstractMethodError();
}

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

@Override
@DisabledRestriction
public CombatState getCombatState(L2Player activeChar, L2Player target) {
    throw new AbstractMethodError();
}

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

@Override
@DisabledRestriction
public boolean canStandUp(L2Player activeChar) {
    throw new AbstractMethodError();
}

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

@Override
@DisabledRestriction/*from   www .  java2s  . c  om*/
public boolean canPickUp(L2Player activeChar, L2ItemInstance item, L2PetInstance pet) {
    throw new AbstractMethodError();
}

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

@Override
@DisabledRestriction
public int getNameColor(L2Player activeChar) {
    throw new AbstractMethodError();
}

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

@Override
@DisabledRestriction
public int getTitleColor(L2Player activeChar) {
    throw new AbstractMethodError();
}

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

@Override
@DisabledRestriction
public Boolean isInsideZone(L2Creature activeChar, byte zone) {
    throw new AbstractMethodError();
}

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

@Override
@DisabledRestriction//from   www.  ja v a 2 s .c om
public double calcDamage(L2Creature activeChar, L2Creature target, double damage, L2Skill skill) {
    throw new AbstractMethodError();
}

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

@Override
@DisabledRestriction//from  ww w. ja  v  a  2  s .com
public List<L2Creature> getTargetList(SkillTargetType type, L2Creature activeChar, L2Skill skill,
        L2Creature target) {
    throw new AbstractMethodError();
}

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

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