public HttpVerbSelectionPanel(InputPanel parent, HttpLocation location, SourceTarget st) {
sourceOrTarget = st;
options = new EnumComboBox<HttpVerb>(HttpLocation.getSupportedVerbs());
options.setPrototypeDisplayValue("DELETE "); // HACK: DELETE (currently the longest verb) may be cutoff otherwise
options.setSelectedItem(getVerb(location, st));
addInputField(new ComboBoxInputField("Verb", options, null));
parent.addInputPanel(this);
setSendInputChangeEvents(true);
setSendUndoEvents(true);
}