com.apple.internal.jobjc.generator.model.Category Java Examples

The following examples show how to use com.apple.internal.jobjc.generator.model.Category. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ClassConsolidator.java    From dragonwell8_jdk with GNU General Public License v2.0 5 votes vote down vote up
private static void addCategoriesAndPatchClasses(final List<Clazz> clazzes, final Clazz clazz) {
    final List<String> fwNames = new ArrayList<String>(clazzes.size());

    for (final Clazz cls : clazzes) {
        if (cls == clazz) continue;
        fwNames.add(cls.parent.name);
        cls.parent.classes.remove(cls);
        cls.parent.categories.add(new Category(cls, clazz));
    }

    System.out.println("creating categories in: " + Utils.joinWComma(fwNames));
}
 
Example #2
Source File: ClassConsolidator.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
private static void addCategoriesAndPatchClasses(final List<Clazz> clazzes, final Clazz clazz) {
    final List<String> fwNames = new ArrayList<String>(clazzes.size());

    for (final Clazz cls : clazzes) {
        if (cls == clazz) continue;
        fwNames.add(cls.parent.name);
        cls.parent.classes.remove(cls);
        cls.parent.categories.add(new Category(cls, clazz));
    }

    System.out.println("creating categories in: " + Utils.joinWComma(fwNames));
}
 
Example #3
Source File: ClassConsolidator.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
private static void addCategoriesAndPatchClasses(final List<Clazz> clazzes, final Clazz clazz) {
    final List<String> fwNames = new ArrayList<String>(clazzes.size());

    for (final Clazz cls : clazzes) {
        if (cls == clazz) continue;
        fwNames.add(cls.parent.name);
        cls.parent.classes.remove(cls);
        cls.parent.categories.add(new Category(cls, clazz));
    }

    System.out.println("creating categories in: " + Utils.joinWComma(fwNames));
}
 
Example #4
Source File: ClassConsolidator.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
private static void addCategoriesAndPatchClasses(final List<Clazz> clazzes, final Clazz clazz) {
    final List<String> fwNames = new ArrayList<String>(clazzes.size());

    for (final Clazz cls : clazzes) {
        if (cls == clazz) continue;
        fwNames.add(cls.parent.name);
        cls.parent.classes.remove(cls);
        cls.parent.categories.add(new Category(cls, clazz));
    }

    System.out.println("creating categories in: " + Utils.joinWComma(fwNames));
}
 
Example #5
Source File: ClassConsolidator.java    From jdk8u-jdk with GNU General Public License v2.0 5 votes vote down vote up
private static void addCategoriesAndPatchClasses(final List<Clazz> clazzes, final Clazz clazz) {
    final List<String> fwNames = new ArrayList<String>(clazzes.size());

    for (final Clazz cls : clazzes) {
        if (cls == clazz) continue;
        fwNames.add(cls.parent.name);
        cls.parent.classes.remove(cls);
        cls.parent.categories.add(new Category(cls, clazz));
    }

    System.out.println("creating categories in: " + Utils.joinWComma(fwNames));
}
 
Example #6
Source File: ClassConsolidator.java    From jdk8u_jdk with GNU General Public License v2.0 5 votes vote down vote up
private static void addCategoriesAndPatchClasses(final List<Clazz> clazzes, final Clazz clazz) {
    final List<String> fwNames = new ArrayList<String>(clazzes.size());

    for (final Clazz cls : clazzes) {
        if (cls == clazz) continue;
        fwNames.add(cls.parent.name);
        cls.parent.classes.remove(cls);
        cls.parent.categories.add(new Category(cls, clazz));
    }

    System.out.println("creating categories in: " + Utils.joinWComma(fwNames));
}
 
Example #7
Source File: ClassConsolidator.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
private static void addCategoriesAndPatchClasses(final List<Clazz> clazzes, final Clazz clazz) {
    final List<String> fwNames = new ArrayList<String>(clazzes.size());

    for (final Clazz cls : clazzes) {
        if (cls == clazz) continue;
        fwNames.add(cls.parent.name);
        cls.parent.classes.remove(cls);
        cls.parent.categories.add(new Category(cls, clazz));
    }

    System.out.println("creating categories in: " + Utils.joinWComma(fwNames));
}
 
Example #8
Source File: ClassConsolidator.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
private static void addCategoriesAndPatchClasses(final List<Clazz> clazzes, final Clazz clazz) {
    final List<String> fwNames = new ArrayList<String>(clazzes.size());

    for (final Clazz cls : clazzes) {
        if (cls == clazz) continue;
        fwNames.add(cls.parent.name);
        cls.parent.classes.remove(cls);
        cls.parent.categories.add(new Category(cls, clazz));
    }

    System.out.println("creating categories in: " + Utils.joinWComma(fwNames));
}
 
Example #9
Source File: ClassConsolidator.java    From jdk8u-jdk with GNU General Public License v2.0 5 votes vote down vote up
private static void addCategoriesAndPatchClasses(final List<Clazz> clazzes, final Clazz clazz) {
    final List<String> fwNames = new ArrayList<String>(clazzes.size());

    for (final Clazz cls : clazzes) {
        if (cls == clazz) continue;
        fwNames.add(cls.parent.name);
        cls.parent.classes.remove(cls);
        cls.parent.categories.add(new Category(cls, clazz));
    }

    System.out.println("creating categories in: " + Utils.joinWComma(fwNames));
}
 
Example #10
Source File: ClassConsolidator.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
private static void addCategoriesAndPatchClasses(final List<Clazz> clazzes, final Clazz clazz) {
    final List<String> fwNames = new ArrayList<String>(clazzes.size());

    for (final Clazz cls : clazzes) {
        if (cls == clazz) continue;
        fwNames.add(cls.parent.name);
        cls.parent.classes.remove(cls);
        cls.parent.categories.add(new Category(cls, clazz));
    }

    System.out.println("creating categories in: " + Utils.joinWComma(fwNames));
}
 
Example #11
Source File: ClassConsolidator.java    From jdk8u-dev-jdk with GNU General Public License v2.0 5 votes vote down vote up
private static void addCategoriesAndPatchClasses(final List<Clazz> clazzes, final Clazz clazz) {
    final List<String> fwNames = new ArrayList<String>(clazzes.size());

    for (final Clazz cls : clazzes) {
        if (cls == clazz) continue;
        fwNames.add(cls.parent.name);
        cls.parent.classes.remove(cls);
        cls.parent.categories.add(new Category(cls, clazz));
    }

    System.out.println("creating categories in: " + Utils.joinWComma(fwNames));
}
 
Example #12
Source File: ClassConsolidator.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
private static void addCategoriesAndPatchClasses(final List<Clazz> clazzes, final Clazz clazz) {
    final List<String> fwNames = new ArrayList<String>(clazzes.size());

    for (final Clazz cls : clazzes) {
        if (cls == clazz) continue;
        fwNames.add(cls.parent.name);
        cls.parent.classes.remove(cls);
        cls.parent.categories.add(new Category(cls, clazz));
    }

    System.out.println("creating categories in: " + Utils.joinWComma(fwNames));
}
 
Example #13
Source File: CategoryClassFile.java    From jdk8u-jdk with GNU General Public License v2.0 4 votes vote down vote up
public CategoryClassFile(final Category category) {
    super(category.category);
    this.category = category;
}
 
Example #14
Source File: CategoryClassClassFile.java    From jdk8u_jdk with GNU General Public License v2.0 4 votes vote down vote up
public CategoryClassClassFile(final Category category) {
    super(category.category, category.category.name + "Class",
            category.category.superClass.getFullPath() + "Class");
    this.category = category;
}
 
Example #15
Source File: CategoryClassFile.java    From jdk8u_jdk with GNU General Public License v2.0 4 votes vote down vote up
public CategoryClassFile(final Category category) {
    super(category.category);
    this.category = category;
}
 
Example #16
Source File: CategoryClassClassFile.java    From jdk8u-jdk with GNU General Public License v2.0 4 votes vote down vote up
public CategoryClassClassFile(final Category category) {
    super(category.category, category.category.name + "Class",
            category.category.superClass.getFullPath() + "Class");
    this.category = category;
}
 
Example #17
Source File: CategoryClassClassFile.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
public CategoryClassClassFile(final Category category) {
    super(category.category, category.category.name + "Class",
            category.category.superClass.getFullPath() + "Class");
    this.category = category;
}
 
Example #18
Source File: CategoryClassFile.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
public CategoryClassFile(final Category category) {
    super(category.category);
    this.category = category;
}
 
Example #19
Source File: CategoryClassFile.java    From jdk8u-dev-jdk with GNU General Public License v2.0 4 votes vote down vote up
public CategoryClassFile(final Category category) {
    super(category.category);
    this.category = category;
}
 
Example #20
Source File: CategoryClassClassFile.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
public CategoryClassClassFile(final Category category) {
    super(category.category, category.category.name + "Class",
            category.category.superClass.getFullPath() + "Class");
    this.category = category;
}
 
Example #21
Source File: CategoryClassFile.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
public CategoryClassFile(final Category category) {
    super(category.category);
    this.category = category;
}
 
Example #22
Source File: CategoryClassClassFile.java    From jdk8u-dev-jdk with GNU General Public License v2.0 4 votes vote down vote up
public CategoryClassClassFile(final Category category) {
    super(category.category, category.category.name + "Class",
            category.category.superClass.getFullPath() + "Class");
    this.category = category;
}
 
Example #23
Source File: CategoryClassClassFile.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
public CategoryClassClassFile(final Category category) {
    super(category.category, category.category.name + "Class",
            category.category.superClass.getFullPath() + "Class");
    this.category = category;
}
 
Example #24
Source File: CategoryClassFile.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
public CategoryClassFile(final Category category) {
    super(category.category);
    this.category = category;
}
 
Example #25
Source File: CategoryClassClassFile.java    From jdk8u-jdk with GNU General Public License v2.0 4 votes vote down vote up
public CategoryClassClassFile(final Category category) {
    super(category.category, category.category.name + "Class",
            category.category.superClass.getFullPath() + "Class");
    this.category = category;
}
 
Example #26
Source File: CategoryClassFile.java    From jdk8u-jdk with GNU General Public License v2.0 4 votes vote down vote up
public CategoryClassFile(final Category category) {
    super(category.category);
    this.category = category;
}
 
Example #27
Source File: CategoryClassClassFile.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
public CategoryClassClassFile(final Category category) {
    super(category.category, category.category.name + "Class",
            category.category.superClass.getFullPath() + "Class");
    this.category = category;
}
 
Example #28
Source File: CategoryClassFile.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
public CategoryClassFile(final Category category) {
    super(category.category);
    this.category = category;
}
 
Example #29
Source File: CategoryClassClassFile.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
public CategoryClassClassFile(final Category category) {
    super(category.category, category.category.name + "Class",
            category.category.superClass.getFullPath() + "Class");
    this.category = category;
}
 
Example #30
Source File: CategoryClassFile.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
public CategoryClassFile(final Category category) {
    super(category.category);
    this.category = category;
}