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

org.clawiz.ui.common.metadata.data.view.grid.property.AbstractGridPropertyPrototype Maven / Gradle / Ivy

The newest version!
package org.clawiz.ui.common.metadata.data.view.grid.property;

import java.lang.SuppressWarnings;
import org.clawiz.core.common.system.session.Session;
import org.clawiz.core.common.metadata.node.MetadataNodeReferencesList;

public class AbstractGridPropertyPrototype extends org.clawiz.core.common.metadata.node.MetadataNode {
    
    public AbstractGridProperty withName(String value) {
        setName(value);
        return (AbstractGridProperty) this;
    }
    
    @SuppressWarnings("Duplicates")
    public void prepare(Session session) {
        super.prepare(session);
        if ( isInPrepare() ) { return; }
        setInPrepare(true);
        
        
        setInPrepare(false);
    }
    
    public void fillReferences(MetadataNodeReferencesList references) {
        super.fillReferences(references);
        
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy