Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NSDictionary (0.26 sec)

  1. platforms/ide/ide-native/src/testFixtures/groovy/org/gradle/ide/xcode/fixtures/ProjectFile.groovy

    class ProjectFile {
        private final TestFile file
        final NSDictionary content
        private Map<String, NSObject> objects
        private PBXObject rootObject
    
        ProjectFile(TestFile pbxProjectFile) {
            pbxProjectFile.assertIsFile()
            file = pbxProjectFile
            content = PropertyListParser.parse(file)
            objects = ((NSDictionary)content.get("objects")).getHashMap()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/tasks/GenerateXcodeProjectFileTask.java

            XcodeprojSerializer serializer = new XcodeprojSerializer(gidGenerator, project);
            final NSDictionary rootObject = serializer.toPlist();
    
            projectFile.transformAction(new Action<NSDictionary>() {
                @Override
                public void execute(NSDictionary dict) {
                    dict.clear();
                    dict.putAll(rootObject);
                }
            });
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 15.5K bytes
    - Viewed (0)
Back to top