All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.gradle.ide.xcode.internal.xcodeproj.PBXObject Maven / Gradle / Ivy

There is a newer version: 8.11.1
Show newest version
/*
 * Copyright 2017 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.gradle.ide.xcode.internal.xcodeproj;

import javax.annotation.Nullable;


public abstract class PBXObject {
    @Nullable
    private String globalID;

    @Nullable
    public String getGlobalID() {
        return globalID;
    }

    public void setGlobalID(String gid) {
        globalID = gid;
    }

    /**
     * @return Type name of the serialized object.
     */
    public abstract String isa();

    /**
     * Populates the serializer with the fields of this object.
     */
    public void serializeInto(@SuppressWarnings("unused") XcodeprojSerializer serializer) {
    }

    /**
     * This method is used to generate stable GIDs and must be stable for identical contents.
     * Returning a constant value is ok but will make the generated project order-dependent.
     */
    public int stableHash() {
        return 0;
    }

    @Override
    public String toString() {
        return String.format("%s isa=%s gid=%s", super.toString(), isa(), getGlobalID());
    }

    /**
     * Generate a stable GID.
     */
    public final String generateGid(GidGenerator generator) {
        return generator.generateGid(isa(), stableHash());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy