Home
last modified time | relevance | path

Searched refs:PropertyIds (Results 1 – 25 of 38) sorted by relevance

12

/trunk/main/connectivity/java/dbtools/src/org/apache/openoffice/comp/sdbc/dbtools/sdbcx/descriptors/
H A DSdbcxColumnDescriptor.java27 import org.apache.openoffice.comp.sdbc.dbtools.util.PropertyIds;
54 registerProperty(PropertyIds.TYPE.name, PropertyIds.TYPE.id, Type.LONG, (short)0, in registerProperties()
68 registerProperty(PropertyIds.TYPENAME.name, PropertyIds.TYPENAME.id, Type.STRING, (short)0, in registerProperties()
82 registerProperty(PropertyIds.PRECISION.name, PropertyIds.PRECISION.id, Type.LONG, (short)0, in registerProperties()
96 registerProperty(PropertyIds.SCALE.name, PropertyIds.SCALE.id, Type.LONG, (short)0, in registerProperties()
110 … registerProperty(PropertyIds.ISNULLABLE.name, PropertyIds.ISNULLABLE.id, Type.LONG, (short)0, in registerProperties()
124 …registerProperty(PropertyIds.ISAUTOINCREMENT.name, PropertyIds.ISAUTOINCREMENT.id, Type.BOOLEAN, (… in registerProperties()
138 …registerProperty(PropertyIds.ISROWVERSION.name, PropertyIds.ISROWVERSION.id, Type.BOOLEAN, (short)… in registerProperties()
152 … registerProperty(PropertyIds.DESCRIPTION.name, PropertyIds.DESCRIPTION.id, Type.STRING, (short)0, in registerProperties()
166 …registerProperty(PropertyIds.DEFAULTVALUE.name, PropertyIds.DEFAULTVALUE.id, Type.STRING, (short)0, in registerProperties()
[all …]
H A DSdbcxViewDescriptor.java26 import org.apache.openoffice.comp.sdbc.dbtools.util.PropertyIds;
48 … registerProperty(PropertyIds.CATALOGNAME.name, PropertyIds.CATALOGNAME.id, Type.STRING, (short)0, in registerProperties()
62 … registerProperty(PropertyIds.SCHEMANAME.name, PropertyIds.SCHEMANAME.id, Type.STRING, (short)0, in registerProperties()
76 registerProperty(PropertyIds.COMMAND.name, PropertyIds.COMMAND.id, Type.STRING, (short)0, in registerProperties()
90 … registerProperty(PropertyIds.CHECKOPTION.name, PropertyIds.CHECKOPTION.id, Type.LONG, (short)0, in registerProperties()
H A DSdbcxKeyDescriptor.java27 import org.apache.openoffice.comp.sdbc.dbtools.util.PropertyIds;
54 registerProperty(PropertyIds.TYPE.name, PropertyIds.TYPE.id, Type.LONG, (short)0, in registerProperties()
67 …registerProperty(PropertyIds.REFERENCEDTABLE.name, PropertyIds.REFERENCEDTABLE.id, Type.STRING, (s… in registerProperties()
81 … registerProperty(PropertyIds.UPDATERULE.name, PropertyIds.UPDATERULE.id, Type.LONG, (short)0, in registerProperties()
95 … registerProperty(PropertyIds.DELETERULE.name, PropertyIds.DELETERULE.id, Type.LONG, (short)0, in registerProperties()
H A DSdbcxIndexDescriptor.java27 import org.apache.openoffice.comp.sdbc.dbtools.util.PropertyIds;
51 registerProperty(PropertyIds.CATALOG.name, PropertyIds.CATALOG.id, Type.STRING, (short)0, in registerProperties()
64 registerProperty(PropertyIds.ISUNIQUE.name, PropertyIds.ISUNIQUE.id, Type.BOOLEAN, (short)0, in registerProperties()
77 … registerProperty(PropertyIds.ISCLUSTERED.name, PropertyIds.ISCLUSTERED.id, Type.BOOLEAN, (short)0, in registerProperties()
H A DSdbcxTableDescriptor.java28 import org.apache.openoffice.comp.sdbc.dbtools.util.PropertyIds;
58 … registerProperty(PropertyIds.CATALOGNAME.name, PropertyIds.CATALOGNAME.id, Type.STRING, (short)0, in registerProperties()
72 … registerProperty(PropertyIds.SCHEMANAME.name, PropertyIds.SCHEMANAME.id, Type.STRING, (short)0, in registerProperties()
86 … registerProperty(PropertyIds.DESCRIPTION.name, PropertyIds.DESCRIPTION.id, Type.STRING, (short)0, in registerProperties()
H A DSdbcxIndexColumnDescriptor.java26 import org.apache.openoffice.comp.sdbc.dbtools.util.PropertyIds;
45 … registerProperty(PropertyIds.ISASCENDING.name, PropertyIds.ISASCENDING.id, Type.BOOLEAN, (short)0, in registerProperties()
H A DSdbcxKeyColumnDescriptor.java26 import org.apache.openoffice.comp.sdbc.dbtools.util.PropertyIds;
44 …registerProperty(PropertyIds.RELATEDCOLUMN.name, PropertyIds.RELATEDCOLUMN.id, Type.STRING, (short… in registerProperties()
/trunk/main/connectivity/java/dbtools/src/org/apache/openoffice/comp/sdbc/dbtools/sdbcx/
H A DOColumn.java28 import org.apache.openoffice.comp.sdbc.dbtools.util.PropertyIds;
95 …registerProperty(PropertyIds.TYPENAME.name, PropertyIds.TYPENAME.id, Type.STRING, PropertyAttribut… in registerProperties()
109 …registerProperty(PropertyIds.DESCRIPTION.name, PropertyIds.DESCRIPTION.id, Type.STRING, PropertyAt… in registerProperties()
123 …registerProperty(PropertyIds.DEFAULTVALUE.name, PropertyIds.DEFAULTVALUE.id, Type.STRING, Property… in registerProperties()
137 …registerProperty(PropertyIds.PRECISION.name, PropertyIds.PRECISION.id, Type.LONG, PropertyAttribut… in registerProperties()
151 …registerProperty(PropertyIds.TYPE.name, PropertyIds.TYPE.id, Type.LONG, PropertyAttribute.READONLY, in registerProperties()
165 …registerProperty(PropertyIds.SCALE.name, PropertyIds.SCALE.id, Type.LONG, PropertyAttribute.READON… in registerProperties()
179 …registerProperty(PropertyIds.ISNULLABLE.name, PropertyIds.ISNULLABLE.id, Type.LONG, PropertyAttrib… in registerProperties()
193 …registerProperty(PropertyIds.ISAUTOINCREMENT.name, PropertyIds.ISAUTOINCREMENT.id, Type.BOOLEAN, P… in registerProperties()
207 …registerProperty(PropertyIds.ISROWVERSION.name, PropertyIds.ISROWVERSION.id, Type.BOOLEAN, Propert… in registerProperties()
[all …]
H A DOKeyContainer.java32 import org.apache.openoffice.comp.sdbc.dbtools.util.PropertyIds;
114 int keyType = AnyConverter.toInt(descriptor.getPropertyValue(PropertyIds.TYPE.name)); in appendObject()
119 … referencedName = AnyConverter.toString(descriptor.getPropertyValue(PropertyIds.UPDATERULE.name)); in appendObject()
120 … updateRule = AnyConverter.toInt(descriptor.getPropertyValue(PropertyIds.UPDATERULE.name)); in appendObject()
121 … deleteRule = AnyConverter.toInt(descriptor.getPropertyValue(PropertyIds.DELETERULE.name)); in appendObject()
144 …quoteName(quote, AnyConverter.toString(columnProperties.getPropertyValue(PropertyIds.NAME.name)))); in appendObject()
173 … String schema = AnyConverter.toString(this.table.getPropertyValue(PropertyIds.SCHEMANAME.name)); in appendObject()
174 … String table = AnyConverter.toString(this.table.getPropertyValue(PropertyIds.TABLENAME.name)); in appendObject()
182 … = connection.getMetaData().getPrimaryKeys(this.table.getPropertyValue(PropertyIds.CATALOGNAME.nam… in appendObject()
190 descriptor.setPropertyValue(PropertyIds.NAME.name, name); in appendObject()
[all …]
H A DOView.java25 import org.apache.openoffice.comp.sdbc.dbtools.util.PropertyIds;
54 …registerProperty(PropertyIds.CATALOGNAME.name, PropertyIds.CATALOGNAME.id, Type.STRING, PropertyAt… in registerProperties()
68 …registerProperty(PropertyIds.SCHEMANAME.name, PropertyIds.SCHEMANAME.id, Type.STRING, PropertyAttr… in registerProperties()
82 …registerProperty(PropertyIds.COMMAND.name, PropertyIds.COMMAND.id, Type.STRING, PropertyAttribute.… in registerProperties()
96 …registerProperty(PropertyIds.CHECKOPTION.name, PropertyIds.CHECKOPTION.id, Type.LONG, PropertyAttr… in registerProperties()
H A DOIndex.java30 import org.apache.openoffice.comp.sdbc.dbtools.util.PropertyIds;
68 …registerProperty(PropertyIds.CATALOG.name, PropertyIds.CATALOG.id, Type.STRING, (short)PropertyAtt… in registerProperties()
75 …registerProperty(PropertyIds.ISPRIMARYKEYINDEX.name, PropertyIds.ISPRIMARYKEYINDEX.id, Type.BOOLEA… in registerProperties()
82 …registerProperty(PropertyIds.ISCLUSTERED.name, PropertyIds.ISCLUSTERED.id, Type.BOOLEAN, (short)Pr… in registerProperties()
89 …registerProperty(PropertyIds.ISUNIQUE.name, PropertyIds.ISUNIQUE.id, Type.BOOLEAN, (short)Property… in registerProperties()
H A DOKey.java30 import org.apache.openoffice.comp.sdbc.dbtools.util.PropertyIds;
75 …registerProperty(PropertyIds.REFERENCEDTABLE.name, PropertyIds.REFERENCEDTABLE.id, Type.STRING, (s… in registerProperties()
83 …registerProperty(PropertyIds.TYPE.name, PropertyIds.TYPE.id, Type.LONG, (short)PropertyAttribute.R… in registerProperties()
91 …registerProperty(PropertyIds.UPDATERULE.name, PropertyIds.UPDATERULE.id, Type.LONG, (short)Propert… in registerProperties()
99 …registerProperty(PropertyIds.DELETERULE.name, PropertyIds.DELETERULE.id, Type.LONG, (short)Propert… in registerProperties()
H A DOTable.java25 import org.apache.openoffice.comp.sdbc.dbtools.util.PropertyIds;
68 …registerProperty(PropertyIds.CATALOGNAME.name, PropertyIds.CATALOGNAME.id, Type.STRING, PropertyAt… in registerProperties()
76 …registerProperty(PropertyIds.SCHEMANAME.name, PropertyIds.SCHEMANAME.id, Type.STRING, PropertyAttr… in registerProperties()
84 …registerProperty(PropertyIds.DESCRIPTION.name, PropertyIds.DESCRIPTION.id, Type.STRING, PropertyAt… in registerProperties()
92 …registerProperty(PropertyIds.TYPE.name, PropertyIds.TYPE.id, Type.STRING, PropertyAttribute.READON… in registerProperties()
H A DOIndexContainer.java31 import org.apache.openoffice.comp.sdbc.dbtools.util.PropertyIds;
84 Object catalog = table.getPropertyValue(PropertyIds.CATALOGNAME.name); in createObject()
85 … String schemaName = AnyConverter.toString(table.getPropertyValue(PropertyIds.SCHEMANAME.name)); in createObject()
86 String tableName = AnyConverter.toString(table.getPropertyValue(PropertyIds.NAME.name)); in createObject()
147 … boolean isUnique = AnyConverter.toBoolean(descriptor.getPropertyValue(PropertyIds.ISUNIQUE.name)); in appendObject()
157 …d(DbTools.quoteName(quote, AnyConverter.toString(column.getPropertyValue(PropertyIds.NAME.name)))); in appendObject()
159 …boolean isAscending = AnyConverter.toBoolean(column.getPropertyValue(PropertyIds.ISASCENDING.name)… in appendObject()
H A DOIndexColumnContainer.java28 import org.apache.openoffice.comp.sdbc.dbtools.util.PropertyIds;
58 Object catalog = index.getTable().getPropertyValue(PropertyIds.CATALOGNAME.name); in createObject()
59 …String schema = AnyConverter.toString(index.getTable().getPropertyValue(PropertyIds.SCHEMANAME.nam… in createObject()
60 … String table = AnyConverter.toString(index.getTable().getPropertyValue(PropertyIds.NAME.name)); in createObject()
H A DOKeyColumnContainer.java27 import org.apache.openoffice.comp.sdbc.dbtools.util.PropertyIds;
58 Object catalog = tableProperties.getPropertyValue(PropertyIds.CATALOGNAME.name); in createObject()
59 …String schema = AnyConverter.toString(tableProperties.getPropertyValue(PropertyIds.SCHEMANAME.name… in createObject()
60 … String table = AnyConverter.toString(tableProperties.getPropertyValue(PropertyIds.NAME.name)); in createObject()
H A DODescriptor.java27 import org.apache.openoffice.comp.sdbc.dbtools.util.PropertyIds;
47 …registerProperty(PropertyIds.NAME.name, PropertyIds.NAME.id, Type.STRING, isReadOnly ? PropertyAtt… in registerProperties()
H A DOIndexColumn.java27 import org.apache.openoffice.comp.sdbc.dbtools.util.PropertyIds;
63 …registerProperty(PropertyIds.ISASCENDING.name, PropertyIds.ISASCENDING.id, Type.BOOLEAN, PropertyA… in registerProperties()
H A DOKeyColumn.java27 import org.apache.openoffice.comp.sdbc.dbtools.util.PropertyIds;
68 …registerProperty(PropertyIds.RELATEDCOLUMN.name, PropertyIds.RELATEDCOLUMN.id, Type.STRING, Proper… in registerProperties()
/trunk/main/connectivity/java/sdbc_jdbc/src/com/sun/star/comp/sdbc/
H A DJavaSQLStatementBase.java27 import org.apache.openoffice.comp.sdbc.dbtools.util.PropertyIds;
92 … registerProperty(PropertyIds.CURSORNAME.name, PropertyIds.CURSORNAME.id, Type.STRING, (short)0, in registerProperties()
106 …registerProperty(PropertyIds.ESCAPEPROCESSING.name, PropertyIds.ESCAPEPROCESSING.id, Type.BOOLEAN,… in registerProperties()
120 …registerProperty(PropertyIds.FETCHDIRECTION.name, PropertyIds.FETCHDIRECTION.id, Type.LONG, (short… in registerProperties()
134 registerProperty(PropertyIds.FETCHSIZE.name, PropertyIds.FETCHSIZE.id, Type.LONG, (short)0, in registerProperties()
148 … registerProperty(PropertyIds.MAXFIELDSIZE.name, PropertyIds.MAXFIELDSIZE.id, Type.LONG, (short)0, in registerProperties()
162 registerProperty(PropertyIds.MAXROWS.name, PropertyIds.MAXROWS.id, Type.LONG, (short)0, in registerProperties()
176 … registerProperty(PropertyIds.QUERYTIMEOUT.name, PropertyIds.QUERYTIMEOUT.id, Type.LONG, (short)0, in registerProperties()
190 …registerProperty(PropertyIds.RESULTSETCONCURRENCY.name, PropertyIds.RESULTSETCONCURRENCY.id, Type.… in registerProperties()
204 …registerProperty(PropertyIds.RESULTSETTYPE.name, PropertyIds.RESULTSETTYPE.id, Type.LONG, (short)0, in registerProperties()
H A DJavaSQLResultSet.java33 import org.apache.openoffice.comp.sdbc.dbtools.util.PropertyIds;
144 …registerProperty(PropertyIds.CURSORNAME.name, PropertyIds.CURSORNAME.id, Type.STRING, (short)Prope… in registerProperties()
151 registerProperty(PropertyIds.RESULTSETCONCURRENCY.name, PropertyIds.RESULTSETCONCURRENCY.id, in registerProperties()
159 registerProperty(PropertyIds.RESULTSETTYPE.name, PropertyIds.RESULTSETTYPE.id, in registerProperties()
167 registerProperty(PropertyIds.FETCHDIRECTION.name, PropertyIds.FETCHDIRECTION.id, in registerProperties()
181 registerProperty(PropertyIds.FETCHSIZE.name, PropertyIds.FETCHSIZE.id, in registerProperties()
/trunk/main/writerfilter/source/dmapper/
H A DPropertyIds.hxx38 enum PropertyIds enum
299 size_t operator()(const PropertyIds a) const { return a; } in operator ()()
309 const rtl::OUString& GetName( PropertyIds eId ) const;
310 PropertyIds GetId(const ::rtl::OUString & rString) const;
322 int getOrCreateIndex(PropertyIds aId);
331 uno::Any get(PropertyIds aId);
333 void set(PropertyIds aId, const uno::Any & rValue);
334 void set(PropertyIds aId, sal_uInt32 nValue);
335 void set(PropertyIds aId, sal_Int32 nValue);
336 void set(PropertyIds aId, sal_uInt16 nValue);
[all …]
H A DPropertyIds.cxx32 typedef ::std::map< PropertyIds, rtl::OUString> PropertyNameMap_t;
33 typedef ::std::map< rtl::OUString, PropertyIds> PropertyBackwardNameMap_t;
40 void add(PropertyIds aId, const rtl::OUString & aStr);
357 PropertyIds aId = m_rPropNameSupplier.GetId(m_sequence[n].Name); in PropertySequence()
366 uno::Any PropertySequence::get(PropertyIds aPropId) in get()
378 int PropertySequence::getOrCreateIndex(PropertyIds aPropId) in getOrCreateIndex()
398 void PropertySequence::set(PropertyIds aPropId, const uno::Any & rValue) in set()
406 void PropertySequence::set(PropertyIds aPropId, sal_uInt32 nValue) in set()
414 void PropertySequence::set(PropertyIds aPropId, sal_Int32 nValue) in set()
422 void PropertySequence::set(PropertyIds aPropId, sal_uInt16 nValue) in set()
[all …]
H A DPropertyMap.cxx136 void PropertyMap::Insert( PropertyIds eId, bool bIsTextProperty, const uno::Any& rAny, bool bOverwr… in Insert()
491 static const PropertyIds aBorderIds[4] = in ApplyBorderToPageStyles()
498 static const PropertyIds aBorderDistanceIds[4] = in ApplyBorderToPageStyles()
505 static const PropertyIds aMarginIds[4] = in ApplyBorderToPageStyles()
535 PropertyIds eMarginId, PropertyIds eDistId, sal_Int32 nDistance, sal_Int32 nOffsetFrom ) in SetBorderDistance()
681 static PropertyIds aProperties[] = in CopyLastHeaderFooter()
713 PropertyIds aPropId = aProperties[i]; in CopyLastHeaderFooter()
/trunk/main/connectivity/java/dbtools/src/org/apache/openoffice/comp/sdbc/dbtools/util/
H A DDbTools.java298 … if (propertySetInfo != null && propertySetInfo.hasPropertyByName(PropertyIds.NAME.name)) { in getTableNameComponents()
299 if (propertySetInfo.hasPropertyByName(PropertyIds.CATALOGNAME.name) in getTableNameComponents()
300 && propertySetInfo.hasPropertyByName(PropertyIds.SCHEMANAME.name)) { in getTableNameComponents()
301 …nameComponents.setCatalog(AnyConverter.toString(table.getPropertyValue(PropertyIds.CATALOGNAME.nam… in getTableNameComponents()
302 …nameComponents.setSchema(AnyConverter.toString(table.getPropertyValue(PropertyIds.SCHEMANAME.name)… in getTableNameComponents()
304 … nameComponents.setTable(AnyConverter.toString(table.getPropertyValue(PropertyIds.NAME.name))); in getTableNameComponents()
696 statementProperties.setPropertyValue(PropertyIds.ESCAPEPROCESSING.name, false); in collectColumnInformation()
734 … keyType = AnyConverter.toInt(propertySet.getPropertyValue(PropertyIds.TYPE.name)); in getPrimaryKeyColumns()

Completed in 99 milliseconds

12