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

com.citytechinc.cq.component.dialog.factory.WidgetMakerContext Maven / Gradle / Ivy

There is a newer version: 7.0.0
Show newest version
package com.citytechinc.cq.component.dialog.factory;

import com.citytechinc.cq.component.dialog.maker.WidgetMaker;

public class WidgetMakerContext {

    private final Class maker;

    private final String xtype;

    public WidgetMakerContext(Class maker, String xtype) {
        this.maker = maker;
        this.xtype = xtype;
    }

    public Class getWidgetMaker() {
        return maker;
    }

    public String getXtype() {
        return xtype;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy