org.apache.xpath.objects.XObject.setObject()方法的使用及代码示例

x33g5p2x  于2022-02-03 转载在 其他  
字(3.9k)|赞(0)|评价(0)|浏览(101)

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

XObject.setObject介绍

暂无

代码示例

代码示例来源:origin: robovm/robovm

/**
 * Create an XObject.
 *
 * @param obj Can be any object, should be a specific type
 * for derived classes, or null.
 */
public XObject(Object obj)
{
 setObject(obj);
}

代码示例来源:origin: xalan/xalan

/**
 * Create an XObject.
 *
 * @param obj Can be any object, should be a specific type
 * for derived classes, or null.
 */
public XObject(Object obj)
{
 setObject(obj);
}

代码示例来源:origin: robovm/robovm

super.setObject(obj);
  super.setObject(cache.getVector());
} else {
  super.setObject(obj);

代码示例来源:origin: xalan/xalan

super.setObject(obj);
  super.setObject(cache.getVector());
} else {
  super.setObject(obj);

代码示例来源:origin: robovm/robovm

/**
 * Forces the object to release it's resources.  This is more harsh than
 * detach().
 */
public void destruct()
{
 if (null != m_obj)
 {
  allowDetachToRelease(true);
  detach();
  setObject(null);
 }
}

代码示例来源:origin: xalan/xalan

/**
 * Forces the object to release it's resources.  This is more harsh than
 * detach().
 */
public void destruct()
{
 if (null != m_obj)
 {
  allowDetachToRelease(true);
  detach();
  setObject(null);
 }
}

代码示例来源:origin: robovm/robovm

super.setObject(nv);

代码示例来源:origin: xalan/xalan

super.setObject(nv);

代码示例来源:origin: ibinti/bugvm

/**
 * Create an XObject.
 *
 * @param obj Can be any object, should be a specific type
 * for derived classes, or null.
 */
public XObject(Object obj)
{
 setObject(obj);
}

代码示例来源:origin: com.mobidevelop.robovm/robovm-rt

/**
 * Create an XObject.
 *
 * @param obj Can be any object, should be a specific type
 * for derived classes, or null.
 */
public XObject(Object obj)
{
 setObject(obj);
}

代码示例来源:origin: org.apache.xalan/com.springsource.org.apache.xalan

/**
 * Create an XObject.
 *
 * @param obj Can be any object, should be a specific type
 * for derived classes, or null.
 */
public XObject(Object obj)
{
 setObject(obj);
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.xalan

/**
 * Create an XObject.
 *
 * @param obj Can be any object, should be a specific type
 * for derived classes, or null.
 */
public XObject(Object obj)
{
 setObject(obj);
}

代码示例来源:origin: MobiVM/robovm

/**
 * Create an XObject.
 *
 * @param obj Can be any object, should be a specific type
 * for derived classes, or null.
 */
public XObject(Object obj)
{
 setObject(obj);
}

代码示例来源:origin: com.bugvm/bugvm-rt

/**
 * Create an XObject.
 *
 * @param obj Can be any object, should be a specific type
 * for derived classes, or null.
 */
public XObject(Object obj)
{
 setObject(obj);
}

代码示例来源:origin: org.apache.xalan/com.springsource.org.apache.xalan

/**
 * Return a java object that's closest to the representation
 * that should be handed to an extension.
 *
 * @return The value of this XNumber as a Double object
 */
public Object object()
{
 if(null == m_obj)
  setObject(new Double(m_val));
 return m_obj;
}

代码示例来源:origin: org.apache.karaf.bundles/org.apache.karaf.bundles.xalan-2.7.1

/**
 * Construct a XNodeSet object.
 *
 * @param num Value of the object
 */
public XNumber(Number num)
{
 super();
 m_val = num.doubleValue();
 setObject(num);
}

代码示例来源:origin: org.apache.karaf.bundles/org.apache.karaf.bundles.xalan-2.7.1

/**
 * Return a java object that's closest to the representation
 * that should be handed to an extension.
 *
 * @return The value of this XNumber as a Double object
 */
public Object object()
{
 if(null == m_obj)
  setObject(new Double(m_val));
 return m_obj;
}

代码示例来源:origin: org.apache.karaf.bundles/org.apache.karaf.bundles.xalan-2.7.1

/**
 * Construct a XBoolean object.
 *
 * @param b Value of the boolean object
 */
public XBoolean(Boolean b)
{
 super();
 m_val = b.booleanValue();
 setObject(b);
}

代码示例来源:origin: org.apache.karaf.bundles/org.apache.karaf.bundles.xalan-2.7.1

/**
 * Return a java object that's closest to the representation
 * that should be handed to an extension.
 *
 * @return The object's value as a java object
 */
public Object object()
{
 if(null == m_obj)
  setObject(new Boolean(m_val));
 return m_obj;
}

代码示例来源:origin: org.apache.xalan/com.springsource.org.apache.xalan

/**
 * Return a java object that's closest to the representation
 * that should be handed to an extension.
 *
 * @return The object's value as a java object
 */
public Object object()
{
 if(null == m_obj)
  setObject(new Boolean(m_val));
 return m_obj;
}

相关文章