Package com.webobjects.foundation

Examples of com.webobjects.foundation.NSMutableDictionary.mutableClone()


   * @see #sortOrders()
   * @return a dictionary of the mandatory sort
   */
  public NSDictionary manadatorySortDictionary() {
    NSMutableDictionary manadatorySortDictionary = (NSMutableDictionary) configurationData().objectForKey(MANDATORY_SORT);
    manadatorySortDictionary = manadatorySortDictionary.mutableClone();
    manadatorySortDictionary.setObjectForKey(Boolean.TRUE, MANDATORY_SORT_ORDER_FLAG);

    return manadatorySortDictionary;
  }

View Full Code Here


                mutableClassProperties.addObject(copy);
              }
              if (isUsedForLocking) {
                mutableAttributesUsedForLocking.addObject(copy);
              }
              copy.setUserInfo(attributeUserInfo.mutableClone());
            }
            entity.removeAttribute(attribute);
            mutableClassProperties.removeObject(attribute);
            mutableAttributesUsedForLocking.removeObject(attribute);
          }
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.