blob: 9a362781695f33ea0f11e79882a59b77822faf55 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013 RCP Vision (http://www.rcp-vision.com) and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Lorenzo Bettini - Initial contribution and API
*******************************************************************************/
package org.eclipse.emf.parsley.tests.util
import java.util.ArrayList
import org.eclipse.emf.common.notify.Notification
import org.eclipse.emf.common.notify.impl.AdapterImpl
import org.eclipse.emf.parsley.examples.library.Book
import org.eclipse.emf.parsley.examples.library.Library
class TestAdapter extends AdapterImpl {
public val notifications = new ArrayList<Notification>()
override notifyChanged(Notification n) {
notifications += n
}
def notificationsToString() {
notifications.map[
"eventType: " + eventType + ", Notifier: "
+ notifier.eObjectToString
].toString
}
def dispatch eObjectToString(Object o) {
o.toString
}
def dispatch eObjectToString(Book b) {
b.title
}
def dispatch eObjectToString(Library lib) {
lib.name
}
def clearNotifications() {
notifications.clear
}
}