当前位置: 首页>>代码示例>>Java>>正文


Java ListenerPriority.LOWEST属性代码示例

本文整理汇总了Java中com.comphenix.protocol.events.ListenerPriority.LOWEST属性的典型用法代码示例。如果您正苦于以下问题:Java ListenerPriority.LOWEST属性的具体用法?Java ListenerPriority.LOWEST怎么用?Java ListenerPriority.LOWEST使用的例子?那么, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在com.comphenix.protocol.events.ListenerPriority的用法示例。


在下文中一共展示了ListenerPriority.LOWEST属性的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: InterceptorTitle

public InterceptorTitle( Plugin plugin, Gson gson, I18NSpigotImpl i18n ) {
	super( plugin, gson, i18n, ListenerPriority.LOWEST, PacketType.Play.Server.TITLE );
}
 
开发者ID:BlackyPaw,项目名称:I18N,代码行数:3,代码来源:InterceptorTitle.java

示例2: InterceptorSlot

public InterceptorSlot( Plugin plugin, Gson gson, I18NSpigotImpl i18n ) {
	super( plugin, gson, i18n, ListenerPriority.LOWEST, PacketType.Play.Server.SET_SLOT, PacketType.Play.Server.WINDOW_ITEMS );
}
 
开发者ID:BlackyPaw,项目名称:I18N,代码行数:3,代码来源:InterceptorSlot.java

示例3: InterceptorChat

public InterceptorChat( Plugin plugin, Gson gson, I18NSpigotImpl i18n ) {
	super( plugin, gson, i18n, ListenerPriority.LOWEST, PacketType.Play.Server.CHAT );
}
 
开发者ID:BlackyPaw,项目名称:I18N,代码行数:3,代码来源:InterceptorChat.java

示例4: InterceptorSettings

public InterceptorSettings( Plugin plugin, Gson gson, I18NSpigotImpl i18n ) {
	super( plugin, gson, i18n, ListenerPriority.LOWEST, PacketType.Play.Client.SETTINGS );
}
 
开发者ID:BlackyPaw,项目名称:I18N,代码行数:3,代码来源:InterceptorSettings.java

示例5: InterceptorScoreboard

public InterceptorScoreboard( Plugin plugin, Gson gson, I18NSpigotImpl i18n ) {
	super( plugin, gson, i18n, ListenerPriority.LOWEST, PacketType.Play.Server.SCOREBOARD_OBJECTIVE, PacketType.Play.Server.SCOREBOARD_SCORE, PacketType.Play.Server.SCOREBOARD_TEAM );
}
 
开发者ID:BlackyPaw,项目名称:I18N,代码行数:3,代码来源:InterceptorScoreboard.java

示例6: InterceptorSign

public InterceptorSign( Plugin plugin, Gson gson, I18NSpigotImpl i18n ) {
	super( plugin, gson, i18n, ListenerPriority.LOWEST, PacketType.Play.Server.TILE_ENTITY_DATA, PacketType.Play.Server.MAP_CHUNK );
}
 
开发者ID:BlackyPaw,项目名称:I18N,代码行数:3,代码来源:InterceptorSign.java

示例7: InterceptorSign

public InterceptorSign( Plugin plugin, Gson gson, I18NSpigotImpl i18n ) {
	super( plugin, gson, i18n, ListenerPriority.LOWEST, PacketType.Play.Server.UPDATE_SIGN );
}
 
开发者ID:BlackyPaw,项目名称:I18N,代码行数:3,代码来源:InterceptorSign.java

示例8: EquipmentListener

public EquipmentListener( NoGlintPlugin plugin ) {
    super( plugin, ListenerPriority.LOWEST, PacketType.Play.Server.ENTITY_EQUIPMENT );
    this.plugin = plugin;
}
 
开发者ID:GuruFraser,项目名称:NoGlint,代码行数:4,代码来源:EquipmentListener.java

示例9: ItemListener

public ItemListener( NoGlintPlugin plugin ) {
    super( plugin, ListenerPriority.LOWEST, PacketType.Play.Server.SPAWN_ENTITY );
    this.plugin = plugin;
}
 
开发者ID:GuruFraser,项目名称:NoGlint,代码行数:4,代码来源:ItemListener.java


注:本文中的com.comphenix.protocol.events.ListenerPriority.LOWEST属性示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。