當前位置: 首頁>>代碼示例>>Java>>正文


Java Notifier類代碼示例

本文整理匯總了Java中org.eclipse.emf.common.notify.Notifier的典型用法代碼示例。如果您正苦於以下問題:Java Notifier類的具體用法?Java Notifier怎麽用?Java Notifier使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


Notifier類屬於org.eclipse.emf.common.notify包,在下文中一共展示了Notifier類的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: createAdapter

import org.eclipse.emf.common.notify.Notifier; //導入依賴的package包/類
/**
 * Creates an adapter for the <code>target</code>.
 * <!-- begin-user-doc --> <!-- end-user-doc -->
 * @param target the object to adapt.
 * @return the adapter for the <code>target</code>.
 * @generated
 */
@Override
public Adapter createAdapter(Notifier target)
{
  return modelSwitch.doSwitch((EObject)target);
}
 
開發者ID:Morgan-Stanley,項目名稱:Saturn,代碼行數:13,代碼來源:SoapIOResourceAdapterFactory.java

示例2: createAdapter

import org.eclipse.emf.common.notify.Notifier; //導入依賴的package包/類
/**
 * Creates an adapter for the <code>target</code>.
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @param target the object to adapt.
 * @return the adapter for the <code>target</code>.
 * @generated
 */
@Override
public Adapter createAdapter(Notifier target) {
	return modelSwitch.doSwitch((EObject)target);
}
 
開發者ID:polarsys,項目名稱:time4sys,代碼行數:13,代碼來源:GqamAdapterFactory.java

示例3: getTarget

import org.eclipse.emf.common.notify.Notifier; //導入依賴的package包/類
/**
 * {@inheritDoc}
 * 
 * @see org.eclipse.emf.common.notify.Adapter#getTarget()
 */
public Notifier getTarget() {
	return target;
}
 
開發者ID:eclipse,項目名稱:gemoc-studio-modeldebugging,代碼行數:9,代碼來源:AbstractDSLDebugElementAdapter.java

示例4: createAdapter

import org.eclipse.emf.common.notify.Notifier; //導入依賴的package包/類
/**
 * Creates an adapter for the <code>target</code>.
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @param target the object to adapt.
 * @return the adapter for the <code>target</code>.
 * @generated
 */
@Override
public Adapter createAdapter ( Notifier target )
{
    return modelSwitch.doSwitch ( (EObject)target );
}
 
開發者ID:eclipse,項目名稱:neoscada,代碼行數:14,代碼來源:SetupAdapterFactory.java

示例5: createAdapter

import org.eclipse.emf.common.notify.Notifier; //導入依賴的package包/類
/**
 * Creates an adapter for the <code>target</code>.
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * 
 * @param target
 *            the object to adapt.
 * @return the adapter for the <code>target</code>.
 * @generated
 */
@Override
public Adapter createAdapter ( final Notifier target )
{
    return this.modelSwitch.doSwitch ( (EObject)target );
}
 
開發者ID:eclipse,項目名稱:neoscada,代碼行數:16,代碼來源:GlobalizeAdapterFactory.java

示例6: adapt

import org.eclipse.emf.common.notify.Notifier; //導入依賴的package包/類
/**
 * This implementation substitutes the factory itself as the key for the adapter.
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
@Override
public Adapter adapt(Notifier notifier, Object type) {
	return super.adapt(notifier, this);
}
 
開發者ID:eclipse,項目名稱:gemoc-studio-modeldebugging,代碼行數:11,代碼來源:EventItemProviderAdapterFactory.java

示例7: createAdapter

import org.eclipse.emf.common.notify.Notifier; //導入依賴的package包/類
/**
 * Creates an adapter for the <code>target</code>.
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @param target the object to adapt.
 * @return the adapter for the <code>target</code>.
 * @generated
 */
@Override
public Adapter createAdapter(Notifier target) {
	return modelSwitch.doSwitch((EObject) target);
}
 
開發者ID:SvenPeldszus,項目名稱:rgse.ttc17.emoflon.tgg,代碼行數:13,代碼來源:RulesAdapterFactory.java

示例8: createAdapter

import org.eclipse.emf.common.notify.Notifier; //導入依賴的package包/類
/**
 * Creates an adapter for the <code>target</code>.
 * <!-- begin-user-doc -->
    * <!-- end-user-doc -->
 * @param target the object to adapt.
 * @return the adapter for the <code>target</code>.
 * @generated
 */
   @Override
   public Adapter createAdapter(Notifier target) {
	return modelSwitch.doSwitch((EObject)target);
}
 
開發者ID:IncQueryLabs,項目名稱:smarthome-cep-demonstrator,代碼行數:13,代碼來源:SmarthomeAdapterFactory.java

示例9: adapt

import org.eclipse.emf.common.notify.Notifier; //導入依賴的package包/類
/**
 * This implementation substitutes the factory itself as the key for the adapter.
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
@Override
public Adapter adapt ( Notifier notifier, Object type )
{
    return super.adapt ( notifier, this );
}
 
開發者ID:eclipse,項目名稱:neoscada,代碼行數:12,代碼來源:CommonItemProviderAdapterFactory.java


注:本文中的org.eclipse.emf.common.notify.Notifier類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。