You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebindings/tdejava/koala/org/trinitydesktop/koala/StatJobSignals.java

27 lines
785 B

//Auto-generated by kalyptus. DO NOT EDIT.
package org.trinitydesktop.koala;
import org.trinitydesktop.qt.TQMetaObject;
import org.trinitydesktop.qt.QtSupport;
public interface StatJobSignals {
/**
Signals a redirection.
Use to update the URL shown to the user.
The redirection itself is handled internally.
@param job the job that is redirected
@param url the new url
@short Signals a redirection.
*/
void redirection(Job job, KURL url);
/**
Signals a permanent redirection.
The redirection itself is handled internally.
@param job the job that is redirected
@param fromUrl the original URL
@param toUrl the new URL
@short Signals a permanent redirection.
*/
void permanentRedirection(Job job, KURL fromUrl, KURL toUrl);
}