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

org.apache.cayenne.modeler.graph.EntityCellMetadata Maven / Gradle / Ivy

The newest version!
/*****************************************************************
 *   Licensed to the Apache Software Foundation (ASF) under one
 *  or more contributor license agreements.  See the NOTICE file
 *  distributed with this work for additional information
 *  regarding copyright ownership.  The ASF licenses this file
 *  to you 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
 *
 *    https://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.apache.cayenne.modeler.graph;

import java.io.Serializable;
import java.util.Objects;

import org.apache.cayenne.map.Attribute;
import org.apache.cayenne.map.Entity;
import org.apache.cayenne.map.Relationship;

/**
 * Abstract class to describe entity's cell 
 */
abstract class EntityCellMetadata, A extends Attribute, R extends Relationship>
        implements Serializable {
    final GraphBuilder builder;
    final String entityName;
    final String label;
    
    EntityCellMetadata(GraphBuilder builder, Entity entity) {
        this.builder = Objects.requireNonNull(builder);
        this.entityName = Objects.requireNonNull(entity).getName();
        this.label = createLabel(entity);
    }
        
    /**
     * Resolves entity
     */
    public abstract Entity fetchEntity();

    public String toString() {
        return label;
    }
    
    /**
     * Creates label for this cell
     */
    String createLabel(Entity entity) {
        StringBuilder label = new StringBuilder("
") .append(entity.getName()) .append("
"); for (A attr : entity.getAttributes()) { if (isPrimary(attr)) { label.append("
").append(attr.getName()).append(""); } } for (A attr : entity.getAttributes()) { if (!isPrimary(attr)) { label.append("
").append(attr.getName()); } } return label.append("").toString(); } /** * Returns whether attribute is "primary" and should therefore be written in italic */ protected abstract boolean isPrimary(A attr); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy