jahiaeventlistenerinterface.java
来自「java 写的一个新闻发布系统」· Java 代码 · 共 50 行
JAVA
50 行
//// ____.// __/\ ______| |__/\. _______// __ .____| | \ | +----+ \// _______| /--| | | - \ _ | : - \_________// \\______: :---| : : | : | \________>// |__\---\_____________:______: :____|____:_____\// /_____|//// . . . i n j a h i a w e t r u s t . . .////// JahiaEventListenerInterface// EV 12.01.2001//package org.jahia.data.events;import java.util.*; // EventObjectpublic interface JahiaEventListenerInterface{ public void beforeServicesLoad( JahiaEvent je ); public void afterServicesLoad( JahiaEvent je ); public void fieldAdded( JahiaEvent je ); public void fieldUpdated( JahiaEvent je ); public void fieldDeleted( JahiaEvent je ); public void containerAdded( JahiaEvent je ); public void containerUpdated( JahiaEvent je ); public void containerDeleted( JahiaEvent je ); public void pageAdded( JahiaEvent je ); public void pageLoaded( JahiaEvent je ); public void pagePropertiesSet( JahiaEvent je ); public void containerListPropertiesSet( JahiaEvent je ); public void rightsSet( JahiaEvent je); public void userLoggedIn( JahiaEvent je ); public void userLoggedOut( JahiaEvent je );} // end JahiaEventListenerInterface
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?