congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
DynamicEntityImpl$PropertyWrapper.setValue
Code IndexAdd Tabnine to your IDE (free)

How to use
setValue
method
in
org.eclipse.persistence.internal.dynamic.DynamicEntityImpl$PropertyWrapper

Best Java code snippets using org.eclipse.persistence.internal.dynamic.DynamicEntityImpl$PropertyWrapper.setValue (Showing top 10 results out of 315)

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

public void setAttributeValueInObject(Object entity, Object value) throws DescriptorException {
  Map<String, PropertyWrapper> propertiesMap = ((DynamicEntityImpl)entity).getPropertiesMap();
  PropertyWrapper wrapper = propertiesMap.get(attributeName);
  // wrapper is never null
  wrapper.setValue(value);
  wrapper.isSet(true);
}
origin: com.haulmont.thirdparty/eclipselink

public void setAttributeValueInObject(Object entity, Object value) throws DescriptorException {
  Map<String, PropertyWrapper> propertiesMap = ((DynamicEntityImpl)entity).getPropertiesMap();
  PropertyWrapper wrapper = propertiesMap.get(attributeName);
  // wrapper is never null
  wrapper.setValue(value);
  wrapper.isSet(true);
}
origin: com.haulmont.thirdparty/eclipselink

wrapper.setValue(value);
wrapper.isSet(true);
origin: org.eclipse.persistence/org.eclipse.persistence.core

propertyWrapper.setValue(value);
origin: org.eclipse.persistence/org.eclipse.persistence.core

wrapper.setValue(value);
wrapper.isSet(true);
origin: com.haulmont.thirdparty/eclipselink

propertyWrapper.setValue(value);
origin: org.eclipse.persistence/org.eclipse.persistence.dbws

  public void setAttributeValueInObject(Object entity, Object value) throws DescriptorException {
    Map<String, PropertyWrapper> propertiesMap = ((XRDynamicEntity)entity).getPropertiesMap();
    PropertyWrapper wrapper = propertiesMap.get(attributeName);
    if (value instanceof ValueHolderInterface) {
      // ValueHolders go directly into the PropertyWrapper
      wrapper.setValue(value);
    }
    else {
      if (!wrapper.isSet()) {
        wrapper.setValue(new ValueHolder(value));
      }
      else {
        ((ValueHolderInterface)wrapper.getValue()).setValue(value);
      }
    }
  }
}
origin: com.haulmont.thirdparty/eclipselink

  public void setAttributeValueInObject(Object entity, Object value) throws DescriptorException {
    Map<String, PropertyWrapper> propertiesMap = ((XRDynamicEntity)entity).getPropertiesMap();
    PropertyWrapper wrapper = propertiesMap.get(attributeName);
    if (value instanceof ValueHolderInterface) {
      // ValueHolders go directly into the PropertyWrapper
      wrapper.setValue(value);
    }
    else {
      if (!wrapper.isSet()) {
        wrapper.setValue(new ValueHolder(value));
      }
      else {
        ((ValueHolderInterface)wrapper.getValue()).setValue(value);
      }
    }
  }
}
origin: com.haulmont.thirdparty/eclipselink

/**
 * Instantiates a new property wrapper.
 *
 * @param value the value
 */
public PropertyWrapper(Object value) {
  setValue(value);
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * Instantiates a new property wrapper.
 *
 * @param value the value
 */
public PropertyWrapper(Object value) {
  setValue(value);
}
org.eclipse.persistence.internal.dynamicDynamicEntityImpl$PropertyWrappersetValue

Javadoc

Sets the value.

Popular methods of DynamicEntityImpl$PropertyWrapper

  • getValue
    Gets the value.
  • isSet
    Checks if is set.
  • <init>
    Instantiates a new property wrapper.

Popular in Java

  • Creating JSON documents from java classes using gson
  • setContentView (Activity)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • getExternalFilesDir (Context)
  • Pointer (com.sun.jna)
    An abstraction for a native pointer data type. A Pointer instance represents, on the Java side, a na
  • Kernel (java.awt.image)
  • SQLException (java.sql)
    An exception that indicates a failed JDBC operation. It provides the following information about pro
  • Set (java.util)
    A Set is a data structure which does not allow duplicate elements.
  • Stream (java.util.stream)
    A sequence of elements supporting sequential and parallel aggregate operations. The following exampl
  • Get (org.apache.hadoop.hbase.client)
    Used to perform Get operations on a single row. To get everything for a row, instantiate a Get objec
  • Top 15 Vim Plugins
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