Examples of performDefaultDataMemberConfiguration()


Examples of org.openbp.core.model.item.type.DataTypeItem.performDefaultDataMemberConfiguration()

        try
        {
          // Try to determin the new data type and perform a default configuration
          // of the member according to its new type
          DataTypeItem dataType = (DataTypeItem) memberObject.getParentDataType().resolveItemRef(typeName, ItemTypes.TYPE);
          dataType.performDefaultDataMemberConfiguration(memberObject);

          // The default configuration may have changed some properties, so reload them
          propertyEditor.getOwner().reloadProperty("Length");
          propertyEditor.getOwner().reloadProperty("Precision");
        }
View Full Code Here

Examples of org.openbp.core.model.item.type.DataTypeItem.performDefaultDataMemberConfiguration()

        try
        {
          // Try to determine the new data type and perform a default configuration
          // of the member according to its new type
          DataTypeItem dataType = (DataTypeItem) member.getParentDataType().resolveItemRef(DEFAULT_MEMBER_TYPE, ItemTypes.TYPE);
          dataType.performDefaultDataMemberConfiguration(member);
        }
        catch (Exception ex)
        {
          // Ignore any errors
        }
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.