org.eclipse.emf.common.notify.Notification.getOldIntValue()方法的使用及代码示例

x33g5p2x  于2022-01-24 转载在 其他  
字(3.5k)|赞(0)|评价(0)|浏览(65)

本文整理了Java中org.eclipse.emf.common.notify.Notification.getOldIntValue()方法的一些代码示例,展示了Notification.getOldIntValue()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Notification.getOldIntValue()方法的具体详情如下:
包路径:org.eclipse.emf.common.notify.Notification
类名称:Notification
方法名:getOldIntValue

Notification.getOldIntValue介绍

[英]Returns the old value of the notifier's feature, if it is of type int.
[中]如果通知程序功能的类型为int,则返回该功能的旧值。

代码示例

代码示例来源:origin: at.bestsolution.efxclipse.eclipse/org.eclipse.emf.common

/**
 * Delegates to the getOldIntValue method of the notification.
 * @return the oldIntValue.
 */
public int getOldIntValue()
{
 return notification.getOldIntValue();
}

代码示例来源:origin: org.eclipse/org.eclipse.jpt.core

uniqueConstraintMoved(notification.getOldIntValue(), notification.getPosition(), (IUniqueConstraint) notification.getNewValue());
  break;
default :

代码示例来源:origin: org.eclipse/org.eclipse.jpt.core

uniqueConstraintMoved(notification.getOldIntValue(), notification.getPosition(), (IUniqueConstraint) notification.getNewValue());
  break;
default :

代码示例来源:origin: org.eclipse/org.eclipse.jpt.core

specifiedPKJoinColumnMoved(notification.getOldIntValue(), notification.getPosition(), (IPrimaryKeyJoinColumn) notification.getNewValue());
  break;
default :

代码示例来源:origin: org.eclipse/org.eclipse.jpt.core

hintMoved(notification.getOldIntValue(), notification.getPosition(), (IQueryHint) notification.getNewValue());
  break;
default :

代码示例来源:origin: org.eclipse/org.eclipse.jpt.core

associationOverrideMoved(notification.getOldIntValue(), notification.getPosition(), (JavaAssociationOverride) notification.getNewValue());
  break;
default :

代码示例来源:origin: org.eclipse/org.eclipse.jpt.core

secondaryTableMoved(notification.getOldIntValue(), notification.getPosition(), (ISecondaryTable) notification.getNewValue());
  break;
default :

代码示例来源:origin: org.eclipse/org.eclipse.jpt.core

namedNativeQueryMoved(notification.getOldIntValue(), notification.getPosition(), (JavaNamedNativeQuery) notification.getNewValue());
  break;
default :

代码示例来源:origin: org.eclipse/org.eclipse.jpt.core

attributeOverrideMoved(notification.getOldIntValue(), notification.getPosition(), (JavaAttributeOverride) notification.getNewValue());
  break;
default :

代码示例来源:origin: org.eclipse/org.eclipse.jpt.core

specifiedJoinColumnMoved(notification.getOldIntValue(), notification.getPosition(), (IJoinColumn) notification.getNewValue());
  break;
default :

代码示例来源:origin: org.eclipse/org.eclipse.jpt.core

specifiedInverseJoinColumnMoved(notification.getOldIntValue(), notification.getPosition(), (IJoinColumn) notification.getNewValue());
  break;
default :

代码示例来源:origin: org.eclipse/org.eclipse.jpt.core

specifiedPrimaryKeyJoinColumnMoved(notification.getOldIntValue(), notification.getPosition(), (JavaPrimaryKeyJoinColumn) notification.getNewValue());
  break;
default :

代码示例来源:origin: org.eclipse/org.eclipse.jpt.core

namedQueryMoved(notification.getOldIntValue(), notification.getPosition(), (JavaNamedQuery) notification.getNewValue());
  break;
default :

代码示例来源:origin: org.eclipse/org.eclipse.jpt.core

specifiedJoinColumnMoved(notification.getOldIntValue(), notification.getPosition(), (IJoinColumn) notification.getNewValue());
  break;
default :

代码示例来源:origin: org.eclipse/org.eclipse.jpt.core

specifiedJoinColumnMoved(notification.getOldIntValue(), notification.getPosition(), (IJoinColumn) notification.getNewValue());
  break;
default :

代码示例来源:origin: org.eclipse/org.eclipse.jpt.core

attributeOverrideMoved(notification.getOldIntValue(), notification.getPosition(), (JavaAttributeOverride) notification.getNewValue());
  break;
default :

相关文章