Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: 69af9e8563f083ff26f173b72c818c6665d1d8c5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/*******************************************************************************
 * Copyright (c) 2001, 2004 IBM Corporation 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:
 * IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.jst.j2ee.common.util;

import org.eclipse.emf.common.notify.impl.AdapterImpl;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.ecore.util.EcoreUtil;
/**
 * Insert the type's description here.
 * Creation date: (03/22/01 10:54:22 AM)
 * @author: Administrator
 */
public abstract class DefaultedAdapterImpl extends AdapterImpl {
	final static String ADAPTER_KEY = "DEFAULTED_ADAPTER"; //$NON-NLS-1$
	protected boolean fNotify = true;
/**
 * DefaultedAdapter constructor comment.
 */
public DefaultedAdapterImpl() {
	super();
}
public abstract EObject defaultContainer();
public boolean isAdapterForType(Object type) {
	return ADAPTER_KEY.equals(type);
}
public static boolean isDefault(Defaultable object) {
	Defaultor defaultor = (Defaultor) retrieveDefaultContainerFor(object);
	return defaultor != null && defaultor.isDefault(object);
}
		
/**
 * Insert the method's description here.
 * Creation date: (6/13/2001 8:43:41 PM)
 * @return boolean
 */
public boolean isNotify() {
	return fNotify;
}
public static DefaultedAdapterImpl retrieveAdapterFor(Defaultable notifier) {
	return (DefaultedAdapterImpl)EcoreUtil.getExistingAdapter(notifier,ADAPTER_KEY);
}
public static EObject retrieveDefaultContainerFor(Defaultable notifier) {
	DefaultedAdapterImpl adapter = retrieveAdapterFor(notifier);
	return adapter == null ? null : adapter.defaultContainer();
}
/**
 * Insert the method's description here.
 * Creation date: (6/13/2001 8:43:41 PM)
 * @param newNotify boolean
 */
public void setNotify(boolean newNotify) {
	fNotify = newNotify;
}
}


Back to the top