Lines Matching refs:xPropertySet
37 public XPropertySet xPropertySet; field in ColumnPropertySet
43 xPropertySet = _xPropertySet; in ColumnPropertySet()
83 xPropertySet.setPropertyValue("Precision", precision); in assignPropertyValues()
91 xPropertySet.setPropertyValue(PropertyNames.PROPERTY_NAME, _sNewName); in assignPropertyValues()
105 … assignPropertyValue("IsNullable", new Integer(oTypeInspector.isNullable(xPropertySet))); in assignPropertyValues()
137 return ((Integer) xPropertySet.getPropertyValue("Precision")).intValue(); in getPrecision()
168 xPropertySet.setPropertyValue("Type", new Integer(nType)); in assignPropertyValue()
175 xPropertySet.setPropertyValue(PropertyNames.PROPERTY_NAME, sName); in assignPropertyValue()
181 nScale = oTypeInspector.getScale(xPropertySet); in assignPropertyValue()
182 xPropertySet.setPropertyValue("Scale", new Integer(nScale)); in assignPropertyValue()
187 nNullability = oTypeInspector.getNullability(xPropertySet, nNullability); in assignPropertyValue()
188 xPropertySet.setPropertyValue("IsNullable", new Integer(nNullability)); in assignPropertyValue()
193 xPropertySet.setPropertyValue("TypeName", sTypeName); in assignPropertyValue()
197 xPropertySet.setPropertyValue(_spropname, _oValue); in assignPropertyValue()