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

org.bndtools.templating.jgit.ui.AbstractNewEntryDialog Maven / Gradle / Ivy

There is a newer version: 7.1.0
Show newest version
package org.bndtools.templating.jgit.ui;

import org.eclipse.jface.dialogs.TitleAreaDialog;
import org.eclipse.swt.widgets.Shell;

import aQute.bnd.header.Attrs;
import aQute.libg.tuple.Pair;

public abstract class AbstractNewEntryDialog extends TitleAreaDialog {

    public AbstractNewEntryDialog(Shell parentShell) {
        super(parentShell);
    }

    public abstract void setEntry(Pair entry);

    public abstract Pair getEntry();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy