blob: ad93d56eabb79447ef50fc59c5c0e40a20535e82 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 1998, 2013 Oracle and/or its affiliates. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0
* which accompanies this distribution.
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* Contributors:
* Oracle - initial API and implementation from Oracle TopLink
******************************************************************************/
package org.eclipse.persistence.testing.oxm.events;
import java.util.ArrayList;
import org.eclipse.persistence.oxm.*;
/**
* @version $Header: MarshalListenerImpl.java 17-may-2006.14:47:42 mmacivor Exp $
* @author mmacivor
* @since release specific (what release of product did this appear in)
*/
public class MarshalListenerImpl implements XMLMarshalListener {
static Integer EMPLOYEE_BEFORE_MARSHAL = new Integer(0);
static Integer ADDRESS_BEFORE_MARSHAL = new Integer(1);
static Integer PHONE_BEFORE_MARSHAL = new Integer(2);
static Integer EMPLOYEE_AFTER_MARSHAL = new Integer(3);
static Integer ADDRESS_AFTER_MARSHAL = new Integer(4);
static Integer PHONE_AFTER_MARSHAL = new Integer(5);
public ArrayList events = null;
public MarshalListenerImpl() {
events = new ArrayList();
}
public void beforeMarshal(Object obj) {
if(obj instanceof Employee) {
events.add(EMPLOYEE_BEFORE_MARSHAL);
} else if(obj instanceof Address) {
events.add(ADDRESS_BEFORE_MARSHAL);
} else if(obj instanceof PhoneNumber) {
events.add(PHONE_BEFORE_MARSHAL);
}
}
public void afterMarshal(Object obj) {
if(obj instanceof Employee) {
events.add(EMPLOYEE_AFTER_MARSHAL);
} else if(obj instanceof Address) {
events.add(ADDRESS_AFTER_MARSHAL);
} else if(obj instanceof PhoneNumber) {
events.add(PHONE_AFTER_MARSHAL);
}
}
}