Tabnine Logo
IndirectMap.getTrackedAttributeName
Code IndexAdd Tabnine to your IDE (free)

How to use
getTrackedAttributeName
method
in
org.eclipse.persistence.indirection.IndirectMap

Best Java code snippets using org.eclipse.persistence.indirection.IndirectMap.getTrackedAttributeName (Showing top 6 results out of 315)

origin: com.haulmont.thirdparty/eclipselink

/**
 * Raise the remove change event.
 */
protected void raiseRemoveChangeEvent(Object key, Object value) {
  if (hasTrackedPropertyChangeListener()) {
    _persistence_getPropertyChangeListener().propertyChange(new MapChangeEvent(this, getTrackedAttributeName(), this, key, value, CollectionChangeEvent.REMOVE, true));
  }
  // this is where relationship maintenance would go
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * Raise the add change event and relationship maintainence.
 */
protected void raiseAddChangeEvent(Object key, Object value) {
  if (hasTrackedPropertyChangeListener()) {
    _persistence_getPropertyChangeListener().propertyChange(new MapChangeEvent(this, getTrackedAttributeName(), this, key, value, CollectionChangeEvent.ADD, true));
  }
  // this is where relationship maintenance would go
}
origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

/**
 * Raise the add change event and relationship maintainence.
 */
protected void raiseAddChangeEvent(Object key, Object value) {
  if (hasTrackedPropertyChangeListener()) {
    _persistence_getPropertyChangeListener().propertyChange(new MapChangeEvent(this, getTrackedAttributeName(), this, key, value, CollectionChangeEvent.ADD));
  }
  // this is where relationship maintenance would go
}
origin: com.haulmont.thirdparty/eclipselink

/**
 * Raise the add change event and relationship maintainence.
 */
protected void raiseAddChangeEvent(Object key, Object value) {
  if (hasTrackedPropertyChangeListener()) {
    _persistence_getPropertyChangeListener().propertyChange(new MapChangeEvent(this, getTrackedAttributeName(), this, key, value, CollectionChangeEvent.ADD, true));
  }
  // this is where relationship maintenance would go
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * Raise the remove change event.
 */
protected void raiseRemoveChangeEvent(Object key, Object value) {
  if (hasTrackedPropertyChangeListener()) {
    _persistence_getPropertyChangeListener().propertyChange(new MapChangeEvent(this, getTrackedAttributeName(), this, key, value, CollectionChangeEvent.REMOVE, true));
  }
  // this is where relationship maintenance would go
}
origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

/**
 * Raise the remove change event.
 */
protected void raiseRemoveChangeEvent(Object key, Object value) {
  if (hasTrackedPropertyChangeListener()) {
    _persistence_getPropertyChangeListener().propertyChange(new MapChangeEvent(this, getTrackedAttributeName(), this, key, value, CollectionChangeEvent.REMOVE));
  }
  // this is where relationship maintenance would go
}
org.eclipse.persistence.indirectionIndirectMapgetTrackedAttributeName

Javadoc

INTERNAL: Return the mapping attribute name, used to raise change events.

Popular methods of IndirectMap

  • _persistence_getPropertyChangeListener
    Return the property change listener for change tracking.
  • buildDelegate
    Return the freshly-built delegate.
  • clear
  • get
  • getDelegate
    INTERNAL: Check whether the contents have been read from the database. If they have not, read them a
  • getValueHolder
    PUBLIC: Return the valueHolder. This method used to be synchronized, which caused deadlock.
  • hasTrackedPropertyChangeListener
    INTERNAL: Return if the collection has a property change listener for change tracking.
  • initialize
    Initialize the instance.
  • isInstantiated
    PUBLIC: Return whether the contents have been read from the database.
  • keySet
  • put
  • raiseAddChangeEvent
    Raise the add change event and relationship maintainence.
  • put,
  • raiseAddChangeEvent,
  • raiseRemoveChangeEvent,
  • <init>,
  • remove,
  • entrySet

Popular in Java

  • Start an intent from android
  • getSupportFragmentManager (FragmentActivity)
  • findViewById (Activity)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • Container (java.awt)
    A generic Abstract Window Toolkit(AWT) container object is a component that can contain other AWT co
  • FileReader (java.io)
    A specialized Reader that reads from a file in the file system. All read requests made by calling me
  • Dictionary (java.util)
    Note: Do not use this class since it is obsolete. Please use the Map interface for new implementatio
  • Filter (javax.servlet)
    A filter is an object that performs filtering tasks on either the request to a resource (a servlet o
  • HttpServlet (javax.servlet.http)
    Provides an abstract class to be subclassed to create an HTTP servlet suitable for a Web site. A sub
  • JCheckBox (javax.swing)
  • CodeWhisperer alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now