org.bndtools.templating.jgit.ui.AbstractNewEntryDialog Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.bndtools.templating.gitrepo Show documentation
Show all versions of org.bndtools.templating.gitrepo Show documentation
org.bndtools.templating.gitrepo
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