Examples of OCTypeDescription


Examples of com.ipc.oce.metadata.OCTypeDescription

   * Тип значения характеристики
   * @return
   * @throws JIException
   */
  public OCTypeDescription getValueType() throws JIException{
    return new OCTypeDescription(get("ValueType"));
  }
View Full Code Here

Examples of com.ipc.oce.metadata.OCTypeDescription

   * Тип значения для отбора.
   * @return
   * @throws JIException
   */
  public OCTypeDescription getValueType() throws JIException {
    return new OCTypeDescription(get("ValueType"));
  }
View Full Code Here

Examples of com.ipc.oce.metadata.OCTypeDescription

   * Тип значения характеристики
   * @return OCTypeDescription
   * @throws JIException
   */
  public OCTypeDescription getValueType() throws JIException{
    return new OCTypeDescription(get("ValueType"));
  }
View Full Code Here

Examples of com.ipc.oce.metadata.OCTypeDescription

   * @param name - имя типа.
   * @return OCTypeDescription
   * @throws JIException
   */
  public OCTypeDescription newTypeDescription(String name) throws JIException {
    return new OCTypeDescription(newObject("TypeDescription", new JIVariant(name)));
  }
View Full Code Here

Examples of com.ipc.oce.metadata.OCTypeDescription

   * Содержит объект, описывающий допустимые типы значений для колонки дерева.
   * @return
   * @throws JIException
   */
  public OCTypeDescription getValueType() throws JIException {
    return new OCTypeDescription(get("ValueType"));
  }
View Full Code Here

Examples of com.ipc.oce.metadata.OCTypeDescription

   * @param fieldName именя поля
   * @return
   * @throws JIException
   */
  public OCVariant getValue(String fieldName) throws JIException {
    OCTypeDescription description = null;
    if (stringTypeCache.containsKey(fieldName)) {
      description = stringTypeCache.get(fieldName);
    } else {
      description = getColumns().getColumn(fieldName).getValueType();
      stringTypeCache.put(fieldName, description);
View Full Code Here

Examples of com.ipc.oce.metadata.OCTypeDescription

   * @param aIndex Индекс поля выборки
   * @return
   * @throws JIException
   */
  public OCVariant getValue(int aIndex) throws JIException {
    OCTypeDescription description = null;
    if (intTypeCache.containsKey(aIndex)) {
      description = intTypeCache.get(aIndex);
    } else {
      description = getColumns().getColumn(aIndex).getValueType();
      intTypeCache.put(aIndex, description);
View Full Code Here

Examples of com.ipc.oce.metadata.OCTypeDescription

   * Тип данных объекта метаданных.
   * @return
   * @throws JIException
   */
  public OCTypeDescription getType() throws JIException{
    return new OCTypeDescription(get("Type"));
  }
View Full Code Here

Examples of com.ipc.oce.metadata.OCTypeDescription

   * Содержит рекомендуемый тип параметра, определяемый на основе анализа операции, производимой с параметром
   * @return OCTypeDescription
   * @throws JIException
   */
  public OCTypeDescription getValueType() throws JIException{
    return new OCTypeDescription(callMethodA("ValueType"));
  }
View Full Code Here

Examples of com.ipc.oce.metadata.OCTypeDescription

  public OCAccountingFlagMetadataObject(JIVariant aDispatch) throws JIException {
    super(aDispatch);
  }
 
  public OCTypeDescription getTypeDescription() throws JIException{
    return new OCTypeDescription(get("Type"));
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.