congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
WeavedAttributeValueHolderInterface.setIsCoordinatedWithProperty
Code IndexAdd Tabnine to your IDE (free)

How to use
setIsCoordinatedWithProperty
method
in
org.eclipse.persistence.indirection.WeavedAttributeValueHolderInterface

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

origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * Coordinate the valueholder for this mapping with the underlying property by calling the
 * initial setter method.
 */
public void updateValueInObject(Object object, Object value, Object attributeValue){
  setRealAttributeValueInObject(object, value);
  ((WeavedAttributeValueHolderInterface)attributeValue).setIsCoordinatedWithProperty(true);
}
origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

/**
 * Coordinate the valueholder for this mapping with the underlying property by calling the
 * initial setter method.
 */
public void updateValueInObject(Object object, Object value, Object attributeValue){
  setRealAttributeValueInObject(object, value);
  ((WeavedAttributeValueHolderInterface)attributeValue).setIsCoordinatedWithProperty(true);
}
 
origin: com.haulmont.thirdparty/eclipselink

/**
 * Coordinate the valueholder for this mapping with the underlying property by calling the
 * initial setter method.
 */
public void updateValueInObject(Object object, Object value, Object attributeValue){
  setRealAttributeValueInObject(object, value);
  ((WeavedAttributeValueHolderInterface)attributeValue).setIsCoordinatedWithProperty(true);
}
 
origin: com.haulmont.thirdparty/eclipselink

public Object getAttributeValueFromObject(Object object) {
  if(isValueHolderProperty) {
    ValueHolderInterface vh = (ValueHolderInterface)ormAccessor.getAttributeValueFromObject(object);
    if(vh != null && !vh.isInstantiated()) {
      Object value = vh.getValue();
      oxmAccessor.setAttributeValueInObject(object, value);
      if(vh instanceof WeavedAttributeValueHolderInterface) {
        ((WeavedAttributeValueHolderInterface)vh).setIsCoordinatedWithProperty(true);
      }
    }
  }
  return oxmAccessor.getAttributeValueFromObject(object);
}
 
origin: org.eclipse.persistence/org.eclipse.persistence.core

public Object getAttributeValueFromObject(Object object) {
  if(isValueHolderProperty) {
    ValueHolderInterface vh = (ValueHolderInterface)ormAccessor.getAttributeValueFromObject(object);
    if(vh != null && !vh.isInstantiated()) {
      Object value = vh.getValue();
      oxmAccessor.setAttributeValueInObject(object, value);
      if(vh instanceof WeavedAttributeValueHolderInterface) {
        ((WeavedAttributeValueHolderInterface)vh).setIsCoordinatedWithProperty(true);
      }
    }
  }
  return oxmAccessor.getAttributeValueFromObject(object);
}
origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

public Object getAttributeValueFromObject(Object object) {
  if(isValueHolderProperty) {
    ValueHolderInterface vh = (ValueHolderInterface)ormAccessor.getAttributeValueFromObject(object);
    if(vh != null && !vh.isInstantiated()) {
      Object value = vh.getValue();
      oxmAccessor.setAttributeValueInObject(object, value);
      if(vh instanceof WeavedAttributeValueHolderInterface) {
        ((WeavedAttributeValueHolderInterface)vh).setIsCoordinatedWithProperty(true);
      }
    }
  }
  return oxmAccessor.getAttributeValueFromObject(object);
}
 
org.eclipse.persistence.indirectionWeavedAttributeValueHolderInterfacesetIsCoordinatedWithProperty

Javadoc

TopLink will call this method when the triggering of a weaved valueholder causes it's value to be coordinated with the underlying property

Popular methods of WeavedAttributeValueHolderInterface

  • shouldAllowInstantiationDeferral
    INTERNAL: Return if add/remove should trigger instantiation or avoid. Current instantiation is avoid

Popular in Java

  • Parsing JSON documents to java classes using gson
  • scheduleAtFixedRate (ScheduledExecutorService)
  • getResourceAsStream (ClassLoader)
  • startActivity (Activity)
  • Point (java.awt)
    A point representing a location in (x,y) coordinate space, specified in integer precision.
  • System (java.lang)
    Provides access to system-related information and resources including standard input and output. Ena
  • Time (java.sql)
    Java representation of an SQL TIME value. Provides utilities to format and parse the time's represen
  • LinkedList (java.util)
    Doubly-linked list implementation of the List and Dequeinterfaces. Implements all optional list oper
  • Modifier (javassist)
    The Modifier class provides static methods and constants to decode class and member access modifiers
  • ServletException (javax.servlet)
    Defines a general exception a servlet can throw when it encounters difficulty.
  • Top plugins for WebStorm
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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