Fix typo in uitext.properties message
[egit/zawir.git] / org.spearce.egit.ui / src / org / spearce / egit / ui / internal / clone / URIishChangeListener.java
blobe956e9527092147b59ca810517c94ced762e2bdd
1 /*******************************************************************************
2 * Copyright (C) 2008, Shawn O. Pearce <spearce@spearce.org>
4 * All rights reserved. This program and the accompanying materials
5 * are made available under the terms of the Eclipse Public License v1.0
6 * See LICENSE for the full license text, also available.
7 *******************************************************************************/
8 package org.spearce.egit.ui.internal.clone;
10 import org.spearce.jgit.transport.URIish;
12 interface URIishChangeListener {
13 /**
14 * Notify the receiver that the URI has changed.
16 * @param newURI
17 * the new URI. Null if the new URI is invalid.
19 void uriishChanged(URIish newURI);