Package com.webobjects.foundation

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


  }

  private NSDictionary optionsWithPrimaryKeySupportDiabled(NSDictionary options) {
    NSMutableDictionary mutableOptions = options.mutableClone();
    mutableOptions.setObjectForKey("NO", EOSchemaGeneration.CreatePrimaryKeySupportKey);
    return mutableOptions.immutableClone();
  }

  public void createDummyData() {
    priorities = Priority.clazz.allObjects(ec).mutableClone();
    states = State.clazz.allObjects(ec).mutableClone();
View Full Code Here


                }
            }
        }
        if (rootNavigationItem == null)
            log.warn("No root navigation item set. You need one.");
        navigationItemsByName = itemsByName.immutableClone();
    }
   
    public void configureNavigation() {
        loadNavigationMenu();
        hasRegistered = true;
View Full Code Here

          if(value != null) {
            result.setObjectForKey(value, keyPath);
          }
        }
        result.setObjectForKey(entryName(), "ERXCachingWrapper.entryName");
        values = result.immutableClone();
      }
      return values;
    }
   
    @Override
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.